[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Finds the Child Node with the specified name.
Source position: laz2_dom.pas line 302
public function TDOMNode.FindNode( |
const ANodeName: DOMString |
):TDOMNode; virtual; |
ANodeName |
|
Node Name to locate in the Child Nodes for the DOM Node. |
DOM Node located with the specified name.
FindNode is a TDOMNode function used to locate a child node in the class instance with the value in ANodeName in its NodeName property. The return value contains the TDOMNode instance with the specified name, or Nil if a node is not found with the specified name.
FindNode always returns Nil in TDOMNode since physical storage is not allocated in TDOMNode for child node instances. It must be overridden in a descendent class to performs actions needed for the DOM node specialization.
|
Provides access to the list of Child nodes for the current node. |
|
|
Gets the value for the ChildNodes property. |
|
|
Name for the DOM node. |
Version 4.0 | Generated 2025-05-03 | Home |