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

TXMLWriterFlag

Represent options enabled when writing XML content.

Declaration

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.

);

Description

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.

See also

TXMLWriterFlags

  

Set type used to store TXMLWriterFlag values.