property Editors.Count as Long
Returns the number of objects in a collection.

TypeDescription
Long A long expression that indicates the number of elements in the collection.
The Count property specifies the number of editors in the collection. Use the Item, ItemByKey properties to access an editor by its index or key.

The following sample displays the list of control's editors collection:

Dim e As EXMLGRIDLibCtl.Editor
For Each e In XMLGrid1.Editors
    Debug.Print e.Key
Next