Interface INodeList
Namespace: Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface INodeList
Properties
Length
The number of nodes in the list. The range of valid child node indices is 0 to
length-1
inclusive.
Declaration
int Length { get; }
Property Value
System.Int32
|
Methods
Item(Int32)
Returns the
index
th item in the collection. If
index
is greater than or equal to the number of nodes in
the list, this returns
null
.
Declaration
INode Item(int index)
Parameters
System.Int32
index
|
Returns
INode
The node at the th position in the
, or if that is not a valid
index. |