GefObjectPoints.Count (read-only property)

Gets the number of points in the collection.
Syntax: long = object.Count
Description: The Count property gets the number of points.

Example:

Sub GefObjectPoints_Count()
    
    Dim oCimObj As GefObject
    Dim oCimObjPts As GefObjectPoints
    
    Set oCimObj = CimGetObject
    Set oCimObjPts = oCimObj.Points
    
    MsgBox "The number of points is " & oCimObjPts.Count
    
End Sub