This interface extends the IEnumerator interface to allow insertion of data and move to previous entries in a collection.


The following tables list the members exposed by Cursor.

Public Properties

  Name Description
Public property Key Point the list at a particular element. Point to the end of the list if the key is not found.
Top

Public Methods

  Name Description
Public method Add Overloaded. Add an unkeyed element to the collection. The new element is placed such that it will be called by a prev() call, but not a next() call.
Public method Insert Add a keyed element to the collection. The new element is placed such that a next() call. The cursor position is not incremented in this method.
Public method MovePrevious Move to the previous element
Public method Remove Remove the current object from the collection
Top

See Also