Class XpsArrayT

XpsArray<T> class

Class incapsulating common XPS model array object features.

public abstract class XpsArray<T> : XpsObject
    where T : XpsObject
ParameterDescription
TThe type of array elements.

Properties

NameDescription
Count { get; }Returns number of elements.
Item { get; }Provides access to array’s element by index i.

Methods

NameDescription
Add(T)Adds a new object into array.
Insert(int, T)Inserts a new object into array at specified position.
Remove(T)Removes an object from array.
RemoveAt(int)Removes an object from array at specified position.

See Also