GefObjectPoints (object)

Represents point ids configured for an object.
Description: GefObjectPoints are Point IDs used in an object. It contains the points owned by an object. They can be accessed by the Points property of a GefObject object. It does not include point ids in any of the parent objects.

Example:

Sub GefObject_Points()
    
    Dim oCimObj As GefObject
    Dim oCimPts As GefObjectPoints
    
    Set oCimObj = CimGetObject
    Set oCimPts = oCimObj.Points
    
    MsgBox "There are " & oCimPts.Count & _
        " point(s) on this object"
    
End Sub
Properties: Application , Count , Parent
Methods: Item , Rebuild