[Overview][Types][Procedures and functions][Index] Reference for unit 'laz2_XMLWrite' (#lazutils)

TXMLWriterFlags

Set type used to store TXMLWriterFlag values.

Declaration

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.

);

Description

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.

See also

TXMLWriterFlag

  

Represent options enabled when writing XML content.

WriteXMLFile

  

Writes an XML document to a file, text file, or stream.