Hide Table of Contents

Get the Number of Lines in Flat-pattern Drawing View's Boundary-box Sketch (C#)

This example shows how to get the number of lines in a flat-pattern drawing view's boundary-box sketch.

//---------------------------------------------
//
// Preconditions:
// 1. In SolidWorks:
//    a. Open <SolidWorks_install_dir>\samples\design portfolio\sheet_metal_bracket.sldprt.
//    b. Open a new drawing document.
//    c. Select sheet_metal_bracket.sldprt in the View Palette's dropdown list box.
// 2. In the IDE:
//    a. Open the Immediate window.
//    b. Run macro.
//
// Postconditions: The View Palette view's name, drawing view name, and
// number of lines in the boundary-box sketch of the
// drawing view of the flat pattern of the sheet
// metal part are printed to the Immediate window.
//
//---------------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Diagnostics;

namespace GetSMBoundaryBoxDisplayDataViewCSharp.csproj
{

    
partial class SolidWorksMacro
    {

        
public void Main()
        {

            ModelDoc2 swModel;
            DrawingDoc swDrawing;
            View swView;
            Sheet swSheet;
            DisplayData swDisplayData;
            
double[] sheetProperties = null;
            
double sheetScale = 0;
            swDwgPaperSizes_e paperSize;
            
double width = 0;
            
double height = 0;
            
long numViews = 0;
            
object[] viewNames = null;
            
string viewPaletteName = "";
            
string drawingViewName = "";
            
int i = 0;
            
bool status = false;


            swModel = (ModelDoc2)swApp.ActiveDoc;
            swDrawing = (DrawingDoc)swModel;

            
// Get current sheet
            swSheet = (Sheet)swDrawing.GetCurrentSheet();
            sheetProperties = (
double[])swSheet.GetProperties();
            sheetScale = (
double)sheetProperties[2] / sheetProperties[3];
            paperSize = (swDwgPaperSizes_e)swSheet.GetSize(
ref width, ref height);

            
// Get number of views on View Palette
            numViews = 0;
            viewNames = (
object[])swDrawing.GetDrawingPaletteViewNames();

            
// Iterate through views on View Palette
            // When view name equals "Flat pattern", drop
            // that view in drawing
            if (!((viewNames == null)))
            {
                numViews = viewNames.GetUpperBound(0) - viewNames.GetLowerBound(0);
                
for (i = 0; i <= numViews; i++)
                {
                    viewPaletteName = (
string)viewNames[i];
                    
if ((viewPaletteName == "Flat pattern"))
                    {
                        
Debug.Print("Dropping View Palette view named: " + viewPaletteName);
                        swView = (View)swDrawing.DropDrawingViewFromPalette2(viewPaletteName, 0.0, 0.0, 0.0);
                        drawingViewName = swView.GetName2();
                        
Debug.Print("Dropped View Palette view into drawing view named: " + drawingViewName);
                    }
                }
            }

            
// Activate view and get number of lines in
            // its boundary box sketch
            status = swDrawing.ActivateView(drawingViewName);
            swView = (View)swDrawing.ActiveDrawingView;
            swDisplayData = (DisplayData)swView.GetSMBoundaryBoxDisplayData();

            
Debug.Print("Number of lines in boundary box of flat-pattern drawing view: " + swDisplayData.GetLineCount());
        }


        
/// <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 the Number of Lines in Flat-pattern Drawing View's Boundary-box Sketch (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) 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.