Xml.XMLDoc.TXMLDocument.StandAlone
Delphi
property StandAlone: DOMString read GetStandAlone write SetStandAlone;
C++
__property System::UnicodeString StandAlone = {read=GetStandAlone, write=SetStandAlone};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Xml.XMLDoc.pas Xml.XMLDoc.hpp |
Xml.XMLDoc | TXMLDocument |
Description
Indicates whether the XML document includes any external markup declarations.
StandAlone is the value of the stand-alone attribute on the document type declaration of the XML document. StandAlone has a value of 'yes' or 'no'.
When StandAlone is 'yes', the document contains no external markup declarations. It may, however, still contain references to external entities, as long as they are not declarations.
When StandAlone is 'no', the document may or may not contain external markup declarations.