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

TDOMComment

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

Implements the DOM Comment interface from the DOM specification.

Declaration

Source position: laz2_dom.pas line 680

type TDOMComment = class(TDOMCharacterData)

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;

  

Makes copy of the DOM Comment node.

end;

Inheritance

TDOMComment

  

Implements the DOM Comment interface from the DOM specification.

|

TDOMCharacterData

  

Implements the CharacterData interface from the DOM specification.

|

TDOMNode

  

Implements the DOM Node interface.

|

TObject

Description

TDOMComment is a TDOMCharacterData descendant that implements the DOM Comment interface from the DOM specification. TDOMComment provides overridden methods needed to implement the NodeType and NodeName properties as required for the DOM Node specialization.

TDOMComment represents the textual content for a comment that appears between the '<!--' and '-->' delimiters. This is the definition for a comment as defined in the XML 1.0 specification and in HTML. The NodeValue can contain any values except the start and end delimiters for a comment.

See also

TDOMCharacterData

  

Implements the CharacterData interface from the DOM specification.


Version 3.2 Generated 2024-02-25 Home