HtmlElement.NextSibling Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.