| [Overview][Types][Procedures and functions][Index] |
Set type used to store TXMLWriterFlag values.
Source position: laz2_xmlwrite.pas line 35
type TXMLWriterFlags = set of ( |
||
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. |
); |
TXMLWriterFlags is a set type used to store 0 or more values from the TXMLWriterFlag enumeration. TXMLWriterFlags indicates the options enabled when writing XML content. TXMLWriterFlags is the type passed as an argument to the WriteXMLFile procedure.
|
Represent options enabled when writing XML content. |
|
|
Writes an XML document to a file, text file, or stream. |