[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'Laz2_DOM' (#lazutils)

TDOMNode.GetNextNode

Gets the next Child or Sibling node for the DOM node.

Declaration

Source position: laz2_dom.pas line 273

public function TDOMNode.GetNextNode: TDOMNode;

Function result

Next child or sibling node in the DOM hierarchy.

Description

GetNextNode is a TDOMNode function used to get the next child or sibling node in the DOM node hierarchy. GetNextNode visits nodes starting at the FirstChild node for the class instance. If FirstChild is not assigned, the GetNextNodeSkipChildren method is called to get the NextSibling node, or the NextSibling node in the ParentNode.

The return value is the TDOMNode which represents the next child or sibling node in the document hierarchy.

GetNextNode is called from the TDOMNodeAllChildEnumerator.MoveNext method.

See also

TDOMNodeAllChildEnumerator.MoveNext

  

Gets the next DOM node for the enumerator.

TDOMNode.GetPreviousNode

  

Gets the previous node in the DOM node hierarchy.

TDOMNode.GetNextNodeSkipChildren

  

Gets the next sibling for the node in the DOM hierarchy.


Version 3.2 Generated 2024-02-25 Home