Xml.XMLDoc.TNodeChange

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

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

C++

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

Propriétés

Type Visibilité  Source Unité  Parent
enum public
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc Xml.XMLDoc

Description

TNodeChange indique le type de modification apportée à un noeud d'un document XML.

Le tableau suivant énumère les valeurs possibles :



Valeur Signification

ncUpdateValue

La valeur du noeud est modifiée.

ncInsertChild

Un nouveau noeud enfant est ajouté au noeud.

ncRemoveChild

Un noeud enfant est supprimé du noeud.

ncAddAttribute

Un nouvel attribut est ajouté au noeud.

ncRemoveAttribute

Un attribut est supprimé du noeud.



Voir aussi