Xml.XmlTransform.TXMLTransform.SourceXmlDocument

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SourceXmlDocument: IDOMDocument read FSourceXmlDocument write FSourceXmlDocument;

C++

__property Xml::Xmldom::_di_IDOMDocument SourceXmlDocument = {read=FSourceXmlDocument, write=FSourceXmlDocument};

Properties

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

Description

Specifies the DOM interface for the XML document to be converted.

Specify the document to be translated as the value of SourceXmlDocument. SourceXmlDocument can be any type of XML document, including an XML data packet. It must, however, conform to the schema expected by the transformation specified by TransformationFile or TransformationDocument. If the transformation converts a specific type of XML document into a data packet, then SourceXmlDocument is a document with the expected schema. If the transformation converts a data packet into an XML document, SourceXmlDocument is the interface to an XML data packet with the expected metadata.

SourceXmlDocument is used only if the SourceXmlFile and SourceXml properties have not been set.

See Also