SVGListBase-1.Item

SVGListBase<T> indexer

Returns the indexth item in the list.

public T this[ulong index] { get; set; }
ParameterDescription
indexIndex in the list.

Return Value

The stored object at the indexth position in the list.

Property Value

The type of item stored in list.

Exceptions

exceptioncondition
DOMExceptionCode NO_MODIFICATION_ALLOWED_ERR. Raised when the list cannot be modified.
DOMExceptionCode INDEX_SIZE_ERR. Raised if the index number is greater than or equal to numberOfItems.

See Also