Solid Edge Assembly Type Library
FullName Property
Description
Returns the name and path of the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property FullName As String
Remarks
This property is equivalent to the Path property, followed by the file system separator, followed by the Name property.
Example
Private Sub Form_Load()
    Dim objApp As solidedgeFramework.Application
    Dim objDoc As solidedgeAssembly.AssemblyDocument
    Const TESTFILE = "T:\vbtests\testcases\sample.asm"
    Dim sName 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.AssemblyDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' Close the active document
    Call objDoc.Close(False)
    ' Open TESTFILE
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' Getting the full name of the document
    sName = objDoc.FullName
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
End Sub
See Also

AssemblyDocument Object  | AssemblyDocument Members