Skip to main content

IdxReadOnlyList<T> Interface

The base generic interface for all interfaces that expose collections and lists of various objects in a Rich Edit control’s document model.

Declaration

IdxReadOnlyList<T> = interface(IInterface)

Remarks

The Rich Edit control’s Native API uses this interface as the direct ancestor for generic and instantiated interfaces that expose pre-initialized unchangeable lists of objects in rich text documents. The interfaces that expose item collections extend the IdxReadOnlyList interface with the functionality allowing you to manage stored items.

The IdxReadOnlyList interface provides the properties and methods that allow you to:

  • Obtain the number of items within the list or collection (Count and GetCount);

  • Access individual items by their zero-based indexes within the list or collection (Self and GetItem).

Inheritance

IInterface
IdxReadOnlyList<T>
See Also