Hide Table of Contents

Get Dimension Tolerance Example (C#)

This example shows how to get and set dimension tolerance values and options.

//--------------------------------------------------------------------
// Preconditions:
// 1. Open public_documents\samples\tutorial\api\box.slddrw.
// 2. Open the Immediate window.
// 3. Zoom in on the diameter dimension and click it.
//
// Postconditions:
// 1. Sets the dimension tolerance type to fit with tolerance.
// 2. Sets the dimension fit tolerance type to transitional.
// 3. Gets the minimum and maximum dimension tolerances for the
//    selected dimension and whether the values are valid.
// 4. Gets the height and scale of the font of the dimension
//    tolerances.
// 5. Sets the dimension fit tolerance font to be the same 
//    size as the dimension tolerance font.
// 6. Gets the height and scale of the font of the dimension fit 
//    tolerance.
// 7. Examine the Immediate window and drawing sheet.
//
// 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;
using System.Diagnostics;
 
namespace Macro1CSharp.csproj
{
    public partial class SolidWorksMacro
    {
 
        public void Main()
        {
            ModelDoc2 swModel = default(ModelDoc2);
            SelectionMgr swSelMgr = default(SelectionMgr);
            DisplayDimension swDisplayDimension = default(DisplayDimension);
            Dimension swDimension = default(Dimension);
            DimensionTolerance swDimensionTolerance = default(DimensionTolerance);
            double maxValue = 0;
            double minValue = 0;
            int maxValueValid = 0;
            int minValueValid = 0;
            double fontHeight = 0;
            double fontScale = 0;
 
            swModel = (ModelDoc2)swApp.ActiveDoc;
            swSelMgr = (SelectionMgr)swModel.SelectionManager;
 
            //Get the selection
            swDisplayDimension = (DisplayDimension)swSelMgr.GetSelectedObject6(1, 0);
 
            //If selection is not a dimension, then exit
            if (swSelMgr.GetSelectedObjectType3(1, -1) != (int)swSelectType_e.swSelDIMENSIONS)
                return;
 
            //Selection is a dimension, so get the dimension tolerance object
            swDimension = (Dimension)swDisplayDimension.GetDimension2(0);
            swDimensionTolerance = (DimensionTolerance)swDimension.Tolerance;
 
            //Set tolerance type to fit with tolerance and transitional
            swDimensionTolerance.Type = (int)swTolType_e.swTolFITWITHTOL;
            Debug.Print("Type of tolerance (8 = swTolType_e.swTolFITWITHTOL): " + swDimensionTolerance.Type);
            swDimensionTolerance.FitType = (int)swFitType_e.swFitTRANSITIONAL;
            Debug.Print("Type of fit tolerance (2 = swFitType_e.swFitTransitional): " + swDimensionTolerance.FitType);
            Debug.Print("");
 
            //Get dimension tolerance minimum and maximum values
            //and whether values are valid
            maxValueValid = swDimensionTolerance.GetMaxValue2(out maxValue);
            minValueValid = swDimensionTolerance.GetMinValue2(out minValue);
            Debug.Print("Minimum dimension tolerance of " + minValue + " valid (0 = valid)? " + minValueValid);
            Debug.Print("Maximum dimension tolerance of " + maxValue + " valid (0 = valid)? " + maxValueValid);
 
            //Get some dimension tolerance values
            fontHeight = swDimensionTolerance.GetFontHeight();
            Debug.Print("  Height of font: " + fontHeight * 1000.0 + " mm");
            fontScale = swDimensionTolerance.GetFontScale();
            Debug.Print("  Scale of font: " + fontScale);
            Debug.Print("");
 
            //Set and get some dimension fit tolerance values
            swDimensionTolerance.SetFitFont(truefalse, 0);
            Debug.Print("Dimension fit tolerance font same size as tolerance font? " + swDimensionTolerance.GetFitFontUseDimension());
            fontHeight = swDimensionTolerance.GetFitFontHeight();
            Debug.Print("  Height of fit tolerance font: " + fontHeight * 1000.0 + " mm");
            fontScale = swDimensionTolerance.GetFitFontScale();
            Debug.Print("  Scale of fit tolerance font: " + fontScale);
        }
 
        /// <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:   Get Dimension Tolerance 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) 2019 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.