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

TDOMParseOptions

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

Represents option settings for the TDOMParser class.

Declaration

Source position: laz2_xmlread.pas line 77

type TDOMParseOptions = class(TObject)

public

  property Validate: Boolean; [rw]

  

Indicates if validation is performed when reading XML content.

  property PreserveWhitespace: Boolean; [rw]

  

Indicates if whitespace is preserved when reading XML content.

  property ExpandEntities: Boolean; [rw]

  

Indicates if entities references are expanded when reading XML values.

  property IgnoreComments: Boolean; [rw]

  

Indicates if comments are ignored when reading XML content.

  property CDSectionsAsText: Boolean; [rw]

  

Indicates if CDATA sections are treated as Text nodes.

  property ResolveExternals: Boolean; [rw]

  

Not used in the current implementation.

  property Namespaces: Boolean; [rw]

  

Indicates if Namespaces are handled when reading XML content.

  property DisallowDoctype: Boolean; [rw]

  

Indicates if DTDs are handled when reading XML content.

  property MaxChars: Cardinal; [rw]

  

Maximum number of characters allowed in expanded entity references.

  property CanonicalForm: Boolean; [rw]

  

Indicates whether XML Canonical Form is used for parsed XML content.

end;

Inheritance

TDOMParseOptions

  

Represents option settings for the TDOMParser class.

|

TObject

Description

TDOMParseOptions represents parser options used in the TDOMParser class. TDOMParseOptions contains properties that control the behavior of the DOM parser, and the TXMLReader that uses the parser.

See also

TDOMParser

  

Implements a parser used to de-serialize XML content into DOM Nodes.


Version 3.2 Generated 2024-02-25 Home