Xml.xmldom.IDOMNode.previousSibling

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

property previousSibling: IDOMNode read get_previousSibling;

C++

__property _di_IDOMNode previousSibling = {read=_scw_get_previousSibling};

Properties

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

Description

Represents the preceding child of this node's parent.

Use previousSibling to obtain the IDOMNode interface of the node that immediately precedes this node. If the node's parent does not have any more child nodes before this one, the value of previousSibling is nil (Delphi) or NULL (C++).

See Also