> Get Points of Repeating Elements in Table-driven Pattern (C#)
Welcome
Getting Started
SolidWorks API Help
FeatureWorks API Help
SolidWorks Document Manager API Help
eDrawings API Help
SolidWorks Routing API Help
SolidWorks Simulation API Help
SolidWorks Utilities API Help
SolidWorks Workgroup PDM API Help
Hide Table of Contents Show Table of Contents

Get Points of Repeating Elements in Table-driven Pattern (C#)

This example shows that the points that describe the locations of the repeating elements in a table-driven pattern are based on the table-driven pattern's coordinate system.

 

//---------------------------------------------
// Preconditions:
// 1. Specified file exists.
// 2. Open the Immediate window.
//
// Postconditions: The coordinates of the
// points for the two repeating elements in the
// table-driven pattern appear in the Immediate
// window.
//
//---------------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Diagnostics;

namespace PatternCS.csproj
{

    
partial class SolidWorksMacro
    {


        
public void Main()
        {
            ModelDoc2 swModel =
default(ModelDoc2);
            ModelDocExtension swModelDocExt =
default(ModelDocExtension);
            SelectionMgr swSelMgr =
default(SelectionMgr);
            Feature swFeat =
default(Feature);
            CoordinateSystemFeatureData swCoordinateData =
default(CoordinateSystemFeatureData);
            TablePatternFeatureData swTablePatternFeatData =
default(TablePatternFeatureData);
            MathTransform swMathTransform =
default(MathTransform);
            MathUtility swMathUtility =
default(MathUtility);
            MathPoint swMathPoint =
default(MathPoint);
            
bool status = false;
            
int errors = 0;
            
int warnings = 0;
            
string filename = null;
            
double[] points = null;
            
string point = null;
            
double[] pointsArray = new double[3];
            
int i = 0;

            filename =
"C:\\Program Files\\SolidWorks Corp\\SolidWorks\\samples\\tutorial\\api\\tablepattern.sldprt";

            swModel = (ModelDoc2)swApp.OpenDoc6(filename, (
int)swDocumentTypes_e.swDocPART, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);
            swModelDocExt = (ModelDocExtension)swModel.Extension;
            swSelMgr = (SelectionMgr)swModel.SelectionManager;

            
// Select the table-driven pattern
            status = swModelDocExt.SelectByID2("TPattern1", "BODYFEATURE", 0, 0, 0, false, 0, null, 0);
            swFeat = (Feature)swSelMgr.GetSelectedObject6(1, -1);


            swTablePatternFeatData = (TablePatternFeatureData)swFeat.GetDefinition();
            swTablePatternFeatData.AccessSelections(swModel,
null);

            
// Get the points of the repeating elements in the table-driven pattern
            // and transform them to coordinates
            swCoordinateData = ((Feature)swTablePatternFeatData.CoordinateSystem).GetDefinition() as CoordinateSystemFeatureData;
            swCoordinateData.AccessSelections(swModel,
null);
            swMathTransform = swCoordinateData.Transform;
            swCoordinateData.ReleaseSelectionAccess();

            swMathUtility = (MathUtility)swApp.GetMathUtility();

            points = (
double[])swTablePatternFeatData.PointArray;

            Debug.Print("Number of points: " + swTablePatternFeatData.GetPointCount());

            
for (i = 0; i < points.Length; i += 3)
            {
                pointsArray[0] = points[i];
                pointsArray[1] = points[i + 1];
                pointsArray[2] = points[i + 2];
                swMathPoint = (MathPoint)swMathUtility.CreatePoint(pointsArray);

                swMathPoint = swMathPoint.MultiplyTransform(swMathTransform.Inverse())
as MathPoint;

                
// Print the coordinates for the two repeating elements in the table-driven pattern
                point = "x: " + ((double[])swMathPoint.ArrayData)[0].ToString() + " y: " + ((double[])swMathPoint.ArrayData)[1].ToString() + " z: " + ((double[])swMathPoint.ArrayData)[2].ToString();

                
Debug.Print(point);

            }

            swTablePatternFeatData.ReleaseSelectionAccess();

        }

        
/// <summary>
        /// The SldWorks swApp variable is pre-assigned for you.
        /// </summary>

        public SldWorks swApp;

    }
}



Related SolidWorks Forum Content

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 Points of Repeating Elements in Table-driven Pattern (C#)
*Comment:  
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) 2012 SP05

The search functionality within the web help is in a beta test phase and you may experience periodic delays or interruptions in its performance. These are the normal and ordinary features of a beta test and shall not under any circumstances give rise to any liability on the part of DS SolidWorks or its licensors. The topics within the Web-based help are not beta topics; they document API Help (English only) 2012 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.