Solid Edge Part 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 SolidEdgePart.PartDocument
    Const TESTFILE = "T:\vbtests\testcases\cube.par"
    Dim strCreatedVersion 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    On Error GoTo 0
    Call objDoc.Close
    ' opening the test case file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    strCreatedVersion = objDoc.CreatedVersion

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

PartDocument Object  | PartDocument Members