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

TXMLContextAction

Values that control how XML content is stored in a DOM sub-tree.

Declaration

Source position: laz2_xmlread.pas line 105

type TXMLContextAction = (

  xaAppendAsChildren = 1,

  

DOM Fragment is appended as child nodes.

  xaReplaceChildren,

  

DOM Fragment replaces child nodes.

  xaInsertBefore,

  

DOM Fragment is inserted before child nodes.

  xaInsertAfter,

  

DOM Fragment is appended after child nodes.

  xaReplace

  

DOM Fragment replaces child nodes.

);

Description

TXMLContextAction is an enumeration type with values that control how XML content is stored in the DOM sub-tree for a specified context. TXMLContextAction represents the value passed as an argument to the TDOMParser.ParseWithContext method.

See also

TDOMParser.ParseWithContext

  

Parses the XML input source into the specified DOM context Node.


Version 3.2 Generated 2024-02-25 Home