SymbolLayer Example

Land Auto

SymbolLayer Example

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