GefPolylineFormat.VertexCount (read-only property)

Gets the number of points to create the poly object.
Syntax: long = object.VertexCount
Description: The VortexCount returns the number of points in the object.
For example if the shape of the object was a triangle then the count would be 3.

Example:

Sub PolylineFormat_VertexCount()
    
    Dim oCimObj As GefObject
    Set oCimObj = CimGetObject
    MsgBox oCimObj.PolylineFormat.VertexCount
    
End Sub