RotateByDescriptionParam Example

Land Auto

RotateByDescriptionParam Example

Sub Example_RotateByDescriptionParam()
    
    ' This example returns the RotateByDescriptionParam 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 RotateByDescriptionParam is: " & dKey.RotateByDescriptionParam _
        , vbInformation, "RotoateByDescriptionParam Example"
    
End Sub