Insert Forming Tool Feature Example (C#)
This example shows how to insert a forming tool feature into a sheet metal
part.
//----------------------------------------------------------------------------
// Preconditions:
// 1. Open a sheet metal part.
// 2. Replace install_dir with your Solidworks installation path.
// 3. Select a face on which to apply the counter sink emboss forming tool
from
// the Design Library.
//
// Postconditions: The counter sink emboss1 forming tool feature is added to
// the FeatureManager design tree.
//
---------------------------------------------------------------------------
using
Microsoft.VisualBasic;
using
System;
using
System.Collections;
using
System.Collections.Generic;
using
System.Data;
using
System.Diagnostics;
using
SolidWorks.Interop.sldworks;
using
SolidWorks.Interop.swconst;
namespace
InsertFormTool_CSharp.csproj
{
partial
class
SolidWorksMacro
{
ModelDoc2
Part;
Feature
myFeature;
public
void Main()
{
Part = (ModelDoc2)swApp.ActiveDoc;
// Insert a counter sink emboss
forming tool feature
myFeature =
Part.FeatureManager.InsertFormToolFeature("install_dir\\data\\design
library\\forming tools\\embosses\\counter sink emboss.sldprt",
false, 0.0,
"",
true,
true,
true,
true,
false);
}
public
SldWorks
swApp;
}
}