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

TXMLReaderFlag

Represents options enabled when reading XML content.

Declaration

Source position: laz2_xmlread.pas line 34

type TXMLReaderFlag = (

  xrfAllowLowerThanInAttributeValue,

  

Indicates the < character is allowed in attribute values.

  xrfAllowSpecialCharsInAttributeValue,

  

Indicates control characters and reserved XML characters are allowed in XML content.

  xrfAllowSpecialCharsInComments,

  

Indicates if '--' is allowed in an XML comment.

  xrfPreserveWhiteSpace

  

Indicates whitespace is preserved when reading XML content.

);

Description

TXMLReaderFlag is an enumerated type with values for options enabled when reading XML content. TXMLReaderFlag values are stored in the TXMLReaderFlags set type, and passed as an argument to the ReadXMLFile, ReadXMLFragment, and ReadDTDFile routines.

See also

ReadXMLFile

  

Reads the content of an XML file into the specified XML document.

ReadXMLFragment

  

Reads an XML fragment into the specified DOM Node.

ReadDTDFile

  

Reads and stores a DTD file into the specified XML document.