Xml.XmlTransform.TXMLTransform.AfterEachRowSet

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterEachRowSet: TRowEvent read FAfterEachRowSet write FAfterEachRowSet;

C++

__property TRowEvent AfterEachRowSet = {read=FAfterEachRowSet, write=FAfterEachRowSet};

Properties

Type Visibility Source Unit Parent
event published
Xml.XmlTransform.pas
Xml.XmlTransform.hpp
Xml.XmlTransform TXMLTransform

Description

Occurs after TXMLTransform has finished transforming the entire XML data packet or a nested detail set.

Write an AfterEachRowSet event handler to take specific action after the XML transform component has translated an entire dataset. This can be a nested detail set, or the entire XML data packet.

For example, you can use AfterEachRowSet with the BeforeEachRowSet and OnTranslate methods to compute summary values: initialize a variable in the BeforeEachRowSet method, update it for every OnTranslate event, and use the result in the AfterEachRowSet event.

See Also