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

TDOMNotation

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

Implements the DOM Notation interface from the DOM specification.

Declaration

Source position: laz2_dom.pas line 733

type TDOMNotation = class(TDOMNode)

protected

  FName: DOMString;

  FPublicID: DOMString;

  FSystemID: DOMString;

  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 a copy of the DOM Node.

  property PublicID: DOMString; [r]

  

Public Identifier for the Document Type declaration.

  property SystemID: DOMString; [r]

  

System Identifier for the Document Type declaration.

end;

Inheritance

TDOMNotation

  

Implements the DOM Notation interface from the DOM specification.

|

TDOMNode

  

Implements the DOM Node interface.

|

TObject

Description

TDOMNotation is a TDOMNode descendant which implements the Notation interface from the DOM specification. It declares the name and format for an unparsed entity declared in a Document Type Declaration (DTD). It can also be used to set the target for a processing instruction that handles the notation. Notations are a vestige of the older SGML standard, and provided for migration purposes. They are seldom used (if at all) in modern XML processing implementations.

See also

TDOMNode

  

Implements the DOM Node interface.


Version 3.2 Generated 2024-02-25 Home