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

TDOMDocumentFragment

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

Implements the DocumentFragment interface from the DOM specification.

Declaration

Source position: laz2_dom.pas line 459

type TDOMDocumentFragment = class(TDOMNode_WithChildren)

protected

  function GetNodeType; override;

  

Gets the value for the NodeType property.

  function GetNodeName; override;

  

Gets the value for the NodeName property.

public

  function CloneNode(); override; overload;

  

Creates a copy of the document fragment with optional recursion into child nodes.

end;

Inheritance

TDOMDocumentFragment

  

Implements the DocumentFragment interface from the DOM specification.

|

TDOMNode_WithChildren

  

Extends TDOMNode to allocate storage for child nodes.

|

TDOMNode

  

Implements the DOM Node interface.

|

TObject

Description

TDOMDocumentFragment is a TDOMNode_WithChildren descendant that implements the DocumentFragment interface from the DOM Level 2 specification. TDOMDocumentFragment is a "lightweight" or "minimal" Document object. It is often used as a temporary work area before applying changes to a TDOMDocument instance. Its content does not have to represent a well-formed XML document, but does require its child nodes to be well-formed XML parsed entities.

See also

TDOMNode_WithChildren

  

Extends TDOMNode to allocate storage for child nodes.

TDOMDocument

  

Implements the DOM Document interface.


Version 3.2 Generated 2024-02-25 Home