SymbolBlock Example

Land Auto

SymbolBlock Example

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