Solid Edge Assembly Type Library
SaveCopyAs Method
Specifies the file name for the copy.
Description
Saves a copy of the referenced document to a file without modifying the open document.
Syntax
Visual Basic
Public Sub SaveCopyAs( _
   ByVal Name As String _
) 
Parameters
Name
Specifies the file name for the copy.
Example
Private Sub Form_Load()
    Dim objApp As solidedgeFramework.Application
    Dim objDoc As solidedgeAssembly.AssemblyDocument
    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 a copy of the Assembly document as another file
    Call objDoc.SaveCopyAs("T:\Temp\sample.asm")
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
End Sub
See Also

AssemblyDocument Object  | AssemblyDocument Members