ScaleInXY Example

Land Auto

ScaleInXY Example

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