Solid Edge FrameworkSupport Type Library
Axis Property
Description
Sets and returns the object used as the axis for the referenced object. It must be a line.
Property type
Read-write property
Syntax
Visual Basic
Public Property Axis As Object
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objDatumPoints As SolidEdgeFrameworkSupport.DatumPoints
    Dim objLine As SolidEdgeFrameworkSupport.Line2d
    Dim objDatumPtsAxis As Object
    ' 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
    'Get the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'create datum
    Set objDatumPoints = objSheet.DatumPoints
    'create a line
    Set objLine = objSheet.Lines2d.AddBy2Points(x1:=0.1, y1:=0.1, _
                                                x2:=0.3, y2:=0.1)
    'set axis
    objDatumPoints.Axis = objLine
    'get axis
    Set objDatumPtsAxis = objDatumPoints.Axis




    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objDatumPoints = Nothing
    Set objLine = Nothing
End Sub
See Also

DatumPoints Collection  | DatumPoints Members

Send comments on this topic.