> Manage Drawing Document Line Styles Example (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

Manage Drawing Document Line Styles Example (C#)

This example shows how to manage the line styles of a drawing document.

//-----------------------------------------------------------------------------
// Preconditions:
// 1. Ensure that the specified drawing document template exists.
// 2. Create c:\temp.
// 3. Rename the namespace of this macro to match your C# project name.
// 4. Open an Immediate Window.
// 5. Run this macro.
//
// Postconditions:
// 1. Inspect the Immediate Window.
// 2. Line styles are saved to c:\temp\styles.sldlin.
//------------------------------------
using SolidWorks.Interop.sldworks;
using SolidWorks.Interop.swconst;
using System;
using System.Diagnostics;
namespace DrawingLineStyles_CSharp.csproj
{
    
partial class SolidWorksMacro
    {
        
DrawingDoc Part;
        
bool boolstatus;
        
int longstatus;

        
public void Main()
        {
            
string def = null;
            
string name = null;

            Part = (
DrawingDoc)swApp.NewDocument("<SolidWorks_install_dir>\\data\\Templates\\drawing.drwdot", 2, 0.2794, 0.4318);
            swApp.ActivateDoc2(
"Draw1 - Sheet1", false, ref longstatus);

            printData(
"Line Style Data at Start", "");

            def =
"B,1.2,-0.2,2,-0.1,2";
            name =
"NewOne";
            boolstatus = Part.AddLineStyle(name, def);
            printData(
"Line Style Data After Add", "");

            
object names = null;
            
string[] styleNames = new string[3];

            styleNames[0] =
"NewOne";
            styleNames[1] =
"CHAIN";
            styleNames[2] =
"PHANTOM";

            names = styleNames;

            
// Save line styles, replacing already saved line styles
            boolstatus = Part.SaveLineStyles("c:\\temp\\styles", names, true);
            printData(
"Line Style Data saved to file ", "c:\\temp\\styles");

            
// Delete a line style
            boolstatus = Part.DeleteLineStyle("NewOne", "STITCH");
            printData(
"Line Style Data After Delete", "");

            
// Load saved line styles, replacing existing line styles
            boolstatus = Part.LoadLineStyles("c:\\temp\\styles", names, true);
            printData(
"Line Style Data Imported from file", "");
        }

        
public void printData(string title, string file)
        {
            
object names = null;
            
object types = null;
            
string[] namesArr = null;
            
string[] typesArr = null;
            
int i = 0;
            
bool stat = false;

            
Debug.Print("-------------------------");
            
Debug.Print(title);
            
Debug.Print("-------------------------");

            
if (string.IsNullOrEmpty(file))
            {
                stat = Part.GetLineStyles(
out names, out types);
            }
            
else
            {
                stat = swApp.GetLineStyles(file,
out names, out types);
            }
            namesArr = (
string[])names;
            typesArr = (
string[])types;
            
if (stat)
            {
                
for (i = 0; i <= typesArr.GetUpperBound(0); i++)
                {
                    
Debug.Print(i + " " + namesArr[i] + " " + typesArr[i]);
                }
            }
            
else
            {
                
Debug.Print("Error in printData");
            }
        }
        
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:   Manage Drawing Document Line Styles Example (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.