Xml.XMLDoc.TNodeChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TNodeChange = (ncUpdateValue, ncInsertChild, ncRemoveChild, ncAddAttribute,
ncRemoveAttribute);

C++

enum DECLSPEC_DENUM TNodeChange : unsigned char { ncUpdateValue, ncInsertChild, ncRemoveChild, ncAddAttribute, ncRemoveAttribute };

Properties

Type Visibility Source Unit Parent
enum public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc Xml.XMLDoc

Description

TNodeChange indicates the type of change made to a node in an XML document.

The following table lists the possible values:



Value Meaning

ncUpdateValue

The value of the node is changed.

ncInsertChild

A new child node is added to the node.

ncRemoveChild

A child node is removed from the node.

ncAddAttribute

A new attribute is added to the node.

ncRemoveAttribute

An attribute is removed from the node.



See Also