Xml.XmlTransform.TXMLTransform.TransformationDocument

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TransformationDocument: IDOMDocument read FTransformationDocument write FTransformationDocument;

C++

__property Xml::Xmldom::_di_IDOMDocument TransformationDocument = {read=FTransformationDocument, write=FTransformationDocument};

Properties

Type Visibility Source Unit Parent
property public
Xml.XmlTransform.pas
Xml.XmlTransform.hpp
Xml.XmlTransform TXMLTransform

Description

Specifies the transformation that indicates how to convert the source XML document.

TransformationDocument is the DOM interface for the transformation that contains instructions for converting the source XML document into the XML that is the value of Data and ResultDocument.

A transformation is a special type of XML document that defines the mapping between the nodes of a source document and a destination document and the structure of the destination document. Each transformation is specific to a particular XML schema and data packet format and represents a one-way transformation. Use the xmlmapper utility to create transformations.

If the EmptyDestinationDocument property is set, TXMLTransform uses that to override the default structure for the destination document that is defined in TransformationDocument.

TransformationDocument is used only if the value of TransformationFile is an empty string.

See Also