Xml.xmldom.IDOMNode.lastChild

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

property lastChild: IDOMNode read get_lastChild;

C++

__property _di_IDOMNode lastChild = {read=_scw_get_lastChild};

Properties

Type Visibility Source Unit Parent
property public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom IDOMNode

Description

Represents the last child node of this node.

Use lastChild to obtain the IDOMNode interface of this node's last child node. If there are no child nodes, the value of lastChild is nil (Delphi) or NULL (C++).

The lastChild property is useful when iterating through all the children of a node.

See Also