Solid Edge Assembly Type Library
Application Property
Description
Returns the active application object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Application As Application
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeAssembly.AssemblyDocument
    Dim objLayouts As SolidEdgeAssembly.Layouts
    Dim objLayoutsApp As SolidEdgeFrameWork.Application
    ' Local variables to be declared here
    ' 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
    On Error GoTo 0
    'Get the Layout Collection object from the Document
    Set objLayouts = objDoc.Layouts
    'Get the Application object from Layouts collection
    Set objLayoutsApp = objLayouts.Application
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objLayouts = Nothing
    Set objLayoutsApp = Nothing
End Sub
See Also

Layouts Collection  | Layouts Members