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