| [Overview][Types][Procedures and functions][Index] |
Represent options enabled when writing XML content.
Source position: laz2_xmlwrite.pas line 31
type TXMLWriterFlag = ( |
||
xwfSpecialCharsInAttributeValue, |
|
Enables writing Carriage Return (Decimal 13) characters in attribute values instead of the numeric character entity &xD; |
xwfPreserveWhiteSpace |
|
Preserves whitespace in DOM Text nodes. |
); |
TXMLWriterFlag is an enumerated type with values that represent options enabled when writing XML content. Values in TXMLWriterFlag are stored in the TXMLWriterFlags set type, and passed as an argument to the WriteXMLFile and WriteXML routines.
|
Set type used to store TXMLWriterFlag values. |