Solid Edge FrameworkSupport Type Library
Name Property
Description
Returns the name of the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Name( _
   Optional ByVal Recurse As Variant _
) As String
Parameters
Recurse
Remarks
All objects have names that are unique within the scope of their parent.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim ObjLine1 As SolidEdgeFrameworkSupport.Line2d
    Dim objDimension As SolidEdgeFrameworkSupport.Dimension
    Dim strName As String
    ' 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 object
    Set objSheet = objDoc.ActiveSheet
    'create an arc2d
    Set ObjLine1 = objSheet.Lines2d.AddBy2Points(x1:=0.1, y1:=0.1, _
                                                 x2:=0.3, y2:=0.1)
    'create a dimension
    Set objDimension = objSheet.Dimensions.AddLength(Object:=ObjLine1)
    'get name
    strName = objDimension.Name
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objDimension = Nothing
    Set ObjLine1 = Nothing
End Sub
See Also

Dimension Object  | Dimension Members