DescriptionFormat Example

Land Auto

DescriptionFormat Example

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