DrawingPath Example

Land Auto

DrawingPath Example

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