Property this
- Namespace
- SharpVectors.Dom.Stylesheets
- Assembly
- SharpVectors.Css.dll
this[ulong]
Used to retrieve a style sheet by ordinal index. If index is greater than or equal to the number of style sheets in the list, this returns null.
public IStyleSheet this[ulong index] { get; }
Parameters
index
ulong
Property Value
this[int]
Gets or sets the element at the specified index.
public IStyleSheet this[int index] { get; set; }
Parameters
index
intThe zero-based index of the element to get or set.
Property Value
- IStyleSheet
The element at the specified index.
Exceptions
- ArgumentOutOfRangeException
index
is not a valid index in the IList<T>.- NotSupportedException
The property is set and the IList<T> is read-only.