Xml.XmlTransform.TRowEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRowEvent = procedure(Sender: TObject; Id: string;
SrcNode: IDOMNode; DestNode: IDOMNode) of object;

C++

typedef void __fastcall (__closure *TRowEvent)(System::TObject* Sender, System::UnicodeString Id, Xml::Xmldom::_di_IDOMNode SrcNode, Xml::Xmldom::_di_IDOMNode DestNode);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Xml.XmlTransform.pas
Xml.XmlTransform.hpp
Xml.XmlTransform Xml.XmlTransform

Description

TRowEvent is the type for event handlers of events that occur at discrete points during an XML transformation.

TRowEvent is the type for the event handlers of events that occur while TXMLTransform is converting an XML document into an XML data packet, or vice versa.

Sender is the XML transform component that generates the event.

Id is a string that identifies the node in the XML document that is about to be translated. This identifier is assigned using the Node Repository page of the Xmlmapper utility when the transformation file is generated. If the node does not have an assigned identifier, Id is an empty string.

SrcNode is the DOM interface for the node that is about to be translated. This node may correspond to the entire XML data packet, a dataset field in the XML data packet, or a record in the XML data packet.

DestNode is the DOM interface for the translated value of SrcNode.

See Also