Keywords Example

Land Auto

Keywords Example

Sub Example_Keywords()
    
    ' This example returns the Keywords setting for the first Project
    ' in the collection
    Dim proj As AeccProject
    Set proj = AeccApplication.Projects.Item(0)
    
    MsgBox "The Keywords value for the first Project in the collection is: " & proj.Keywords, _
        vbInformation, "Keywords Example"
    
End Sub