Hide Table of Contents

Insert GTol Example (C#)

This example shows how to to insert a GTol whose frame contains datums with material conditions.

//-------------------------------------------------------
// Preconditions: Verify that the specified drawing
// document to open exists.
//
// Postconditions:
// 1. Opens the specified drawing document.
// 2. Inserts a GTol whose frame contains datums with material
//    conditions.
// 3. Examine the drawing.
//
// NOTE: Because this drawing is used elsewhere, do not
// save changes.
//-------------------------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System.Runtime.InteropServices;
using System;
 
namespace Macro1CSharp.csproj
{
 
    partial class SolidWorksMacro
    {
 
        public void Main()
        {
            DrawingDoc swDrawing = default(DrawingDoc);
            ModelDoc2 swModel = default(ModelDoc2);
            Gtol swGtol = default(Gtol);
            Annotation swAnnotation = default(Annotation);
            bool status = false;
            int errors = 0;
            int warnings = 0;
            string fileName = null;
 
            fileName = "C:\\Program Files\\SolidWorks Corp\\SOLIDWORKS\\samples\\tutorial\\advdrawings\\foodprocessor.slddrw";
            swDrawing = (DrawingDoc)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, ""ref errors, ref warnings);
            swApp.ActivateDoc3("foodprocessor - Sheet1"false, (int)swRebuildOnActivation_e.swRebuildActiveDoc, ref errors);
            swModel = (ModelDoc2)swDrawing;
 
            swGtol = (Gtol)swModel.InsertGtol();
            if ((swGtol != null))
            {
                swGtol.SetFrameSymbols2(1, "<IGTOL-POSI>"false""false"""""""");
                swGtol.SetFrameValues(1, "0.2""""B-A-C<MOD-MMC>""B<MOD-MMC>-C<MOD-LMC>""C<MOD-MMC>-A");
                swGtol.SetPTZHeight(""false);
                swGtol.SetCompositeFrame2(false, 1);
                swGtol.SetBetweenTwoPoints(false"""");
                swAnnotation = (Annotation)swGtol.GetAnnotation();
                if ((swAnnotation != null))
                {
                    status = swAnnotation.SetPosition2(0.245354759676629, 0.126683476923077, 0);
                    errors = swAnnotation.SetLeader3((int)swLeaderStyle_e.swNO_LEADER, (int)swLeaderSide_e.swLS_SMART, truefalsefalsefalse);
                }
            }
 
            swModel.WindowRedraw();
 
        }
 
        /// <summary>
        /// The SldWorks swApp variable is pre-assigned for you.
        /// </summary>
        public SldWorks swApp;
 
    }
}


Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Insert GTol Example (C#)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2015 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.