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
};

XMLDoc

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.  

 

TNodeChangeEvent

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!