Microsoft XML 2.5 SDK


 

entities Property

[This is preliminary documentation and subject to change.]

Contains a list of the entities, both external and internal, that are declared in the document type declaration.

Syntax

objXMLDOMNamedNodeMap = oXMLDOMDocumentType.entities

Remarks

Object. The property is read-only. In the following document type declaration, for example, the node list in this property contains the entities "bax" and "bay" but not "baz."

<!DOCTYPE ex SYSTEM "ex.dtd" [  <!ENTITY bax "bax">  <!ENTITY bay "bay">
   <!ENTITY % baz "baz">]>

Applies To

XMLDOMDocumentType