Microsoft XML SDK 2.6 - XML Reference

entities Property

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

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">]>

See Also

Applies To: XMLDOMDocumentType Object