Xml.XMLDoc.TNodeChangeEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TNodeChangeEvent = procedure(const Node: IXMLNode;
ChangeType: TNodeChange) of object;

C++

typedef void __fastcall (__closure *TNodeChangeEvent)(const Xml::Xmlintf::_di_IXMLNode Node, TNodeChange ChangeType);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc Xml.XMLDoc

Description

TNodeChangeEvent is the type for event handlers that respond when XML nodes are changed.

TNodeChangeEvent is the type for the BeforeNodeChange and AfterNodeChange event handlers. These events occur before and after changes are made to the nodes in an XML document.

Node identifies the node to which the change occurs.

ChangeType indicates the type of change made to Node.

See Also