Solid Edge Assembly Type Library
CreatedVersion Property
Description
Returns the version of Solid Edge that was used to create the referenced document.
Property type
Read-only property
Syntax
Visual Basic
Public Property CreatedVersion As String
Remarks
If the file has never been saved, reading the CreatedVersion property returns an error.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeAssembly.AssemblyDocument
    Const TESTFILE = "T:\vbtests\TestCases\sample.asm"
    Dim strCreateVersion As String
    ' 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
    objDoc.Close
    Set objDoc = objApp.Documents.Open(TESTFILE)
    'Get the Version on which assembly is created
    strCreateVersion = objDoc.CreatedVersion



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

AssemblyDocument Object  | AssemblyDocument Members