RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
XMLDoc.TNodeListOperation Enumeration

TNodeListOperation indicates what type of change is about to occur using an IXMLNodeList interface.

Pascal
TNodeListOperation = (
  nlInsert,
  nlRemove,
  nlCreateNode
);
C++
enum TNodeListOperation {
  nlInsert,
  nlRemove,
  nlCreateNode
};

When an application makes a change using the IXMLNodeList interface, the implementing object sends its owner a notification of that change. TNodeListOperation identifies the type of change that is about to occur. The following table lists the possible values:

Value 
Meaning 
nlInsert  
An existing node is about to be added to the list.  
nlRemove  
A node is about to be removed from the list.  
nlCreateNode  
A new node needs to be created so that it can be added to the list.  

 

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