Xml.Win.msxmldom.TMSDOMNotation

From RAD Studio API Documentation
Jump to: navigation, search


Xml.Win.msxmldom.TMSDOMNodeXml.Win.msxmldom.TMSDOMInterfaceSystem.TInterfacedObjectSystem.TObjectTMSDOMNotation

Delphi

TMSDOMNotation = class(TMSDOMNode, IDOMNotation)

C++

class PASCALIMPLEMENTATION TMSDOMNotation : public TMSDOMNode

Properties

Type Visibility Source Unit Parent
class public
Xml.Win.msxmldom.pas
Xml.Win.msxmldom.hpp
Xml.Win.msxmldom Xml.Win.msxmldom

Description

Represents a notation declaration in a DOM document. Notations are used to describe:

  • The format of unparsed entities.
  • The format of elements that support a notation attribute.
  • The application to which a processing instruction is addressed.

To create a notation object, you can use the following code:

// Notation is a TMSDOMNotation
// i must be a valid index
Notation := TMSDOMNotation(Doc.MSDocument.doctype.notations.item[i]);

Note: To retrieve an IXMLDOMNotation reference from a TMSDOMNotation object, you can use the MSNotation property.

See Also