Private Sub Form_Load()
Dim objApp As SolidEdgeFramework.Application
Dim objDoc As SolidEdgePart.PartDocument
Dim objModel As SolidEdgePart.Model
Dim objApplication As SolidEdgeFramework.Application
Dim objUDPats As SolidEdgePart.UserDefinedPatterns
Dim objProfiles As SolidEdgePart.Profiles
Dim objProfile(1 To 2) As SolidEdgePart.Profile
Dim objLines As SolidEdgeframeworkSupport.Lines2d
Dim objRelns As SolidEdgeframeworkSupport.Relations2d
Dim lngStatus As Long
' Report errors
Const PI = 3.14159265358979
' Create/get the application with specific settings
On Error Resume Next
Set objApp = GetObject(, "SolidEdge.Application")
If Err Then
Err.Clear
Set objApp = CreateObject("SolidEdge.Application")
Set objDoc = objApp.Documents.Add("SolidEdge.PartDocument")
objApp.Visible = True
Else
Set objDoc = objApp.ActiveDocument
End If
'Draw the Base Profile
Set objProfile(1) = objDoc.ProfileSets.Add.Profiles.Add(objDoc.RefPlanes(3))
Set objLines = objProfile(1).Lines2d
Call objLines.AddBy2Points(X1:=0, Y1:=0, X2:=0.08, Y2:=0)
Call objLines.AddBy2Points(X1:=0.08, Y1:=0, X2:=0.08, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0.08, Y1:=0.06, X2:=0.064, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0.064, Y1:=0.06, X2:=0.064, Y2:=0.02)
Call objLines.AddBy2Points(X1:=0.064, Y1:=0.02, X2:=0.048, Y2:=0.02)
Call objLines.AddBy2Points(X1:=0.048, Y1:=0.02, X2:=0.048, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0.048, Y1:=0.06, X2:=0.032, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0.032, Y1:=0.06, X2:=0.032, Y2:=0.02)
Call objLines.AddBy2Points(X1:=0.032, Y1:=0.02, X2:=0.016, Y2:=0.02)
Call objLines.AddBy2Points(X1:=0.016, Y1:=0.02, X2:=0.016, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0.016, Y1:=0.06, X2:=0, Y2:=0.06)
Call objLines.AddBy2Points(X1:=0, Y1:=0.06, X2:=0, Y2:=0)
' Define Relations among the Line objects to make the Profile closed
Set objRelns = objProfile(1).Relations2d
Call objRelns.AddKeypoint(Object1:=objLines(1), Index1:=igLineEnd, Object2:=objLines(2), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(2), Index1:=igLineEnd, Object2:=objLines(3), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(3), Index1:=igLineEnd, Object2:=objLines(4), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(4), Index1:=igLineEnd, Object2:=objLines(5), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(5), Index1:=igLineEnd, Object2:=objLines(6), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(6), Index1:=igLineEnd, Object2:=objLines(7), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(7), Index1:=igLineEnd, Object2:=objLines(8), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(8), Index1:=igLineEnd, Object2:=objLines(9), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(9), Index1:=igLineEnd, Object2:=objLines(10), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(10), Index1:=igLineEnd, Object2:=objLines(11), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(11), Index1:=igLineEnd, Object2:=objLines(12), Index2:=igLineStart)
Call objRelns.AddKeypoint(Object1:=objLines(12), Index1:=igLineEnd, Object2:=objLines(1), Index2:=igLineStart)
' Check for the Profile Validity
lngStatus = objProfile(1).End(ValidationCriteria:=igProfileClosed)
If lngStatus <> 0 Then
MsgBox ("Profile not closed")
End If
'Create the Base Extruded Protrusion Feature
Set objModel = objDoc.Models.AddFiniteExtrudedProtrusion(NumberOfProfiles:=1, _
profileArray:=objProfile, profileplaneSide:= _
igRight, ExtrusionDistance:=0.05)
objProfile(1).Visible = False
' Check the status of Base Feature
If objModel.ExtrudedProtrusions(1).Status <> igFeatureOK Then
MsgBox ("Error in the Creation of Base Protrusion Feature object")
End If
' Create a UserDefinedPattern Collection object
Set objUDPats = objModel.UserDefinedPatterns
' Get the Application Property of UserDefinedPatterns object
Set objApplication = objUDPats.Application
' USER DISPLAY
' Release objects
Set objApp = Nothing
Set objDoc = Nothing
Set objApplication = Nothing
Set objUDPats = Nothing
Set objProfiles = Nothing
Set objProfile(1) = Nothing
Set objLines = Nothing
Set objModel = Nothing
Set objRelns = Nothing
End Sub