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