Solid Edge Assembly Type Library
UnitsOfMeasure Property
Description
Returns the UnitsOfMeasure object for the referenced document.
Property type
Read-only property
Syntax
Visual Basic
Public Property UnitsOfMeasure As UnitsOfMeasure
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeAssembly.AssemblyDocument
    Dim objUnits As SolidEdgeFramework.UnitsOfMeasure
    Const TESTFILE = "T:\vbtests\testcases\sample.asm"
    Dim sUntStr As String
    Dim HexSize As Variant

    ' 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)
    ' getting the UnitsOfMeasure object for the Assembly document
    Set objUnits = objDoc.UnitsOfMeasure
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objUnits = Nothing
End Sub
See Also

AssemblyDocument Object  | AssemblyDocument Members