Solid Edge Assembly Type Library
SummaryInfo Property
Description
Returns a SheetSummaryInfo object to provide access to descriptive properties for the referenced document.
Property type
Read-only property
Syntax
Visual Basic
Public Property SummaryInfo As Object
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeAssembly.AssemblyDocument
    Dim objSummaryInfo As SolidEdgeFramework.SummaryInfo
    Const TESTFILE = "T:\vbtests\testcases\sample.asm"
    ' 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
    objDoc.Close
    ' Opening the test case file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' Getting the SummaryInfo object of the Assembly Document
    Set objSummaryInfo = objDoc.SummaryInfo

    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSummaryInfo = Nothing
End Sub
See Also

AssemblyDocument Object  | AssemblyDocument Members