PointTolerance Example

Land Auto

PointTolerance Example

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