Xml.XMLDoc.TXMLNodeList.NotificationProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property NotificationProc: TNodeListNotification read FNotificationProc;

C++

__property TNodeListNotification NotificationProc = {read=FNotificationProc};

Properties

Type Visibility Source Unit Parent
event protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNodeList

Description

Specifies a callback that TXMLNodeList calls when nodes are added to or removed from the list, or when new nodes need to be created

The node that instantiates TXMLNodeList to manage a set of its child or attribute nodes supplies the value of this callback to the TXMLNodeList constructor. TXMLNodeList then calls this callback when its methods are used to add, create, or remove nodes.

See Also