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 SolidEdgePart.PartDocument
    Dim objCirc1 As SolidEdgeFrameworkSupport.Circle2d
    Dim objCirc2 As SolidEdgeFrameworkSupport.Circle2d
    Dim objRelns As SolidEdgeFrameworkSupport.Relations2d
    Dim objReln1 As SolidEdgeFrameworkSupport.Relation2d
    Dim objProfile As SolidEdgePart.Profile
    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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' Create an empty Profile
    Set objProfile = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:= _
                                                         objDoc.RefPlanes(1))
    ' Create 2 Circle objects
    Set objCirc1 = objProfile.Circles2d.AddByCenterRadius(x:=0, y:=0, Radius:=0.1)
    Set objCirc2 = objProfile.Circles2d.AddByCenterRadius(x:=0.05, y:=0.05, Radius:=0.12)
    ' Create a Concentric Relation between the objects
    Set objRelns = objProfile.Relations2d
    Set objReln1 = objRelns.AddConcentric(Object1:=objCirc1, Object2:=objCirc2)
    ' Get the Name property of Relation2d object
    strName = objReln1.Name
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objCirc1 = Nothing
    Set objCirc2 = Nothing
    Set objRelns = Nothing
    Set objProfile = Nothing
    Set objReln1 = Nothing
End Sub
See Also

Relation2d Object  | Relation2d Members

Send comments on this topic.