Class ElementList

ElementList class

Represents an ordered collection of elements.

public abstract class ElementList : IEnumerable<Element>

Properties

NameDescription
abstract Count { get; }Gets the number of elements in the ElementList.
virtual ElementOf { get; }Gets an element at the given index.

Methods

NameDescription
abstract GetEnumerator()Gets an enumerator that iterates through the collection of elements.
abstract Item(int)Retrieves a element at the given index.

See Also