Property this
- Namespace
- SharpVectors.Dom.Css
- Assembly
- SharpVectors.Css.dll
this[ulong]
Used to retrieve a CSS rule by ordinal index. The order in this collection represents the order of the rules in the CSS style sheet. If index is greater than or equal to the number of rules in the list, this returns null.
public ICssRule this[ulong index] { get; set; }
Parameters
index
ulong
Property Value
this[int]
Gets or sets the element at the specified index.
public ICssRule this[int index] { get; set; }
Parameters
index
intThe zero-based index of the element to get or set.
Property Value
- ICssRule
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.