Xml.XMLDoc.TXMLDocument.AfterNodeChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterNodeChange: TNodeChangeEvent read FAfterNodeChange write FAfterNodeChange;

C++

__property TNodeChangeEvent AfterNodeChange = {read=FAfterNodeChange, write=FAfterNodeChange};

Properties

Type Visibility Source Unit Parent
event published
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLDocument

Description

Occurs after a change is made to one of the nodes in the document.

Write an AfterNodeChange event handler to take specific action after a change is made to a node in the XML document. When an application makes a change to one of the nodes, the following steps occur:

1. The Modified property is set to true.

2. A BeforeNodeChange event occurs.

3. The change is made to the node.

4. An AfterNodeChange event occurs.

See Also