RotateFixedFactor Example

Land Auto

RotateFixedFactor Example

Sub Example_RotateFixedFactor()
    
    ' This example returns the RotateFixedFactor for the first
    ' DescriptionKey in the first DescriptionKeyFile in the collection.
    Dim dKeyFile As AeccDescriptionKeyFile
    Dim dKey As AeccDescriptionKey
    Set dKeyFile = AeccApplication.ActiveProject.DescriptionKeyFiles.Item(0)
    Set dKey = dKeyFile.Item(0)
    
    MsgBox "The value for DescriptionKey RotateFixedFactor is: " & dKey.RotateFixedFactor _
        , vbInformation, "RotateFixedFactor Example"
    
End Sub