HtmlElement.NextSibling Property

Definition

Gets the next element at the same level as this element in the document tree.

public:
 property System::Windows::Forms::HtmlElement ^ NextSibling { System::Windows::Forms::HtmlElement ^ get(); };
public System.Windows.Forms.HtmlElement NextSibling { get; }
public System.Windows.Forms.HtmlElement? NextSibling { get; }
member this.NextSibling : System.Windows.Forms.HtmlElement
Public ReadOnly Property NextSibling As HtmlElement

Property Value

An HtmlElement representing the element to the right of the current element.

Remarks

Use NextSibling in conjunction with FirstChild to walk the document tree for an HTML element.

Applies to

See also