Solid Edge Assembly Type Library
Save Method
Description
Saves the referenced object.
Syntax
Visual Basic
Public Sub Save() 
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeAssembly.AssemblyDocument
    Dim objSummaryInfo As SolidEdgeFramework.SummaryInfo
    Dim varSaveDate As String
    Dim sysTime As String
    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
    Call objDoc.Close
    ' opening the test case file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' Saving the test case file after fit the view.
    Call objDoc.Windows(1).View.Fit
    Call objDoc.Save
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSummaryInfo = Nothing
End Sub
See Also

AssemblyDocument Object  | AssemblyDocument Members