RevisionNumber Example
Sub Example_RevisionNumber()
' This example returns the RevisionNumber for the first surface in the collection.
Dim surf As AeccSurface
Set surf = AeccApplication.ActiveProject.Surfaces.Item(0)
MsgBox "The RevisionNumber for the first surface is: " & surf.RevisionNumber , vbInformation, "RevisionNumber Example"
End Sub