SVGListBaseT Class
SVGListBase<T> class
This interface defines a base list of all SVG lists.
public abstract class SVGListBase<T> : SVGValueType, IEnumerable<T>
Parameter | Description |
---|
T | Type of item stored in list. |
Properties
Name | Description |
---|
[getItem] | |
[setItem] Returns the indexth item in the list. | |
getLength The number of items in the list. | |
getNumberOfItems The number of items in the list. | |
Methods
Name | Description |
---|
appendItem(T) | Inserts a new item at the end of the list. |
clear() | Clears all existing current items from the list, with the result being an empty list. |
dispose() | Releases unmanaged and - optionally - managed resources. |
getEnumerator() | Gets the enumerator. |
getItem(ulong) | Returns the specified item from the list. |
getPlatformType() | This method is used to retrieve the ECMAScript object . |
initialize(T) | Clears all existing current items from the list and re-initializes the list to hold the single item specified by the parameter. |
insertItemBefore(T, ulong) | Inserts a new item into the list at the specified position. The first item is number 0. |
removeItem(ulong) | Removes an existing item from the list. |
replaceItem(T, ulong) | Replaces an existing item in the list with a new item. |
See Also