Private Sub Form_Load()
Dim objApp As SolidEdgeFrameWork.Application
Dim objDoc As SolidEdgeDraft.DraftDocument
Dim objSheet As SolidEdgeDraft.Sheet
Dim objCenterMarks As SolidEdgeFrameworkSupport.CenterMarks
Dim objCenterMark As SolidEdgeFrameworkSupport.CenterMark
Dim objLine As SolidEdgeFrameworkSupport.Line2d
Dim objCMAxis As SolidEdgeFrameworkSupport.Line2d
' 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.DraftDocument")
objApp.Visible = True
Else
Set objDoc = objApp.ActiveDocument
End If
'getting the active sheet
Set objSheet = objDoc.ActiveSheet
' Get the CenterMarks collection object on the active sheet
Set objCenterMarks = objSheet.CenterMarks
' Create a line on the active sheet
Set objLine = objSheet.Lines2d.AddBy2Points(x1:=0.25, y1:=0.1, x2:=0.5, y2:=0.25)
' Set the Axis of the CenterMarks collection object
objCenterMarks.Axis = objLine
' Create a CenterMark on the active sheet
Set objCenterMark = objCenterMarks.Add(x:=0.25, y:=0.25, z:=0)
' Get the Axis of the CenterMark object
Set objCMAxis = objCenterMark.Axis
' USER DISPLAY
' Release objects
Set objApp = Nothing
Set objDoc = Nothing
Set objSheet = Nothing
Set objCenterMarks = Nothing
Set objLine = Nothing
Set objCMAxis = Nothing
End Sub