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

TDOMDocument.GetChildNodeList

Gets a DOM Node List with the children for the specified DOM Node.

Declaration

Source position: laz2_dom.pas line 495

protected function TDOMDocument.GetChildNodeList(

  aNode: TDOMNode

):TDOMNodeList;

Arguments

aNode

  

DOM Node examined for child nodes in the method.

Function result

TDOMNodeList instance for the specified DOM node.

Description

GetChildNodeList is a TDOMNodeList function used to get a list with the child nodes in ANode.

If ANode is not a TDOMNode_WithChildren descendant, the return value is an empty TDOMNodeList instance with ANode as its parent. Otherwise, the value in the ChildNodes property in ANode is used as the return value.

See also

TDOMNode.ChildNodes

  

Provides access to the list of Child nodes for the current node.

TDOMNode_WithChildren.HasChildNodes

  

Indicates if the current DOM node has child nodes.

TDOMNodeList

  

Implements an ordered list of DOM Nodes.


Version 3.2 Generated 2024-02-25 Home