Solid Edge Part 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 SolidEdgePart.PartDocument
    Dim objModel As SolidEdgePart.Model
    Dim objProfArr(1 To 2) As SolidEdgePart.Profile
    Dim objThnWls As SolidEdgePart.Thinwalls
    Dim objApplication As SolidEdgeFramework.Application
    ' 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
    ' Draw the Profile
    Set objProfArr(1) = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1))
    Call objProfArr(1).Circles2d.AddByCenterRadius(x:=0, y:=0, Radius:=0.01)
    ' Create the Base Protrusion Object
    Set objModel = objDoc.Models.AddFiniteExtrudedProtrusion(NumberOfProfiles:=1, _
                                                             ProfileArray:=objProfArr, ProfilePlaneSide:=igRight, _
                                                             ExtrusionDistance:=0.04)
    objProfArr(1).Visible = False
    ' Create the ThinWalls collection object
    Set objThnWls = objModel.Thinwalls
    ' Get the Application Property of ThinWalls object
    Set objApplication = objThnWls.Application
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objProfArr(1) = Nothing
    Set objThnWls = Nothing
    Set objModel = Nothing
    Set objApplication = Nothing
End Sub
See Also

Thinwalls Collection  | Thinwalls Members