RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
XMLDoc.TNodeChange Enumeration

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

Pascal
TNodeChange = (
  ncUpdateValue,
  ncInsertChild,
  ncRemoveChild,
  ncAddAttribute,
  ncRemoveAttribute
);
C++
enum TNodeChange {
  ncUpdateValue,
  ncInsertChild,
  ncRemoveChild,
  ncAddAttribute,
  ncRemoveAttribute
};

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.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!