Hide Table of Contents

Insert Weldment Cut List Table Example (C#)

This example shows how to insert a weldment cut list table in a drawing.

//----------------------------------------------------------------------------
// Preconditions:
// 1. Verify that the specified cut list template exists.
// 2. Open public_documents\tutorial\weldments\weldment_box2.sldprt.
// 3. Click File > Make Drawing from Part > OK > drag a view onto
//    the sheet > OK.
// 4. Expand the drawing view in the FeatureManager design tree.
// 5. Right-click weldment_box2 and select Open Part(weldment_box2.sldprt).
// 6. Right-click the Cut list folder and click Update Automatically.
// 7. Click Window > weldment_box2 - Sheet1*.
//
// Postconditions:
// 1. Inserts a weldment cut list table.
// 2. Examine the FeatureManager design tree and graphics area.
//
// NOTE: Because this part is used elsewhere, do not save changes.
//----------------------------------------------------------------------------

using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
namespace InsertWeldmentCutList_CSharp.csproj
{
    
partial class SolidWorksMacro
    {

        
const string WeldmentTableTemplate = "C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS\\lang\\english\\cut list.sldwldtbt";

        
public void Main()
        {

            
DrawingDoc oDrawing = default(DrawingDoc);
            
View swView = default(View);
            
WeldmentCutListAnnotation WMTable = default(WeldmentCutListAnnotation);

            oDrawing = (
DrawingDoc)swApp.ActiveDoc;
            swView = (
View)oDrawing.GetFirstView();
            swView = (
View)swView.GetNextView();

            
// Insert the weldment cut list table

            WMTable = swView.InsertWeldmentTable(false, 0.1996662889191, 0.1013905859662, (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopLeft, "Default<As Welded>", WeldmentTableTemplate);
        }

        
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 Weldment Cut List Table 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) 2017 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.