Xml.XmlTransform.TXMLTransform.AfterEachRow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterEachRow: TRowEvent read FAfterEachRow write FAfterEachRow;

C++

__property TRowEvent AfterEachRow = {read=FAfterEachRow, write=FAfterEachRow};

Properties

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

Description

Occurs after TXMLTransform has finished transforming a record in the XML data packet.

Write an AfterEachRow event handler to take specific action after the XML transform component has translated each row in the data packet. For example, you can use AfterEachRow to read the data from the generated row and use it to compute the value of an internally calculated field.

See Also