entities Property

Contains a list of the entities declared in the DOCTYPE declaration.

var objXMLDOMNamedNodeMap = oXMLDOMDocumentType.entities;

HRESULT get_entities(
  IXMLDOMNamedNodeMap** entityMap
);

General Remarks

In the following DOCTYPE declaration, for example, the node list in this property contains the entities bax and bay, but not baz.

<!DOCTYPE ex SYSTEM "ex.dtd" [
  <!ENTITY bat "bat">
  <!ENTITY bar "bar">
  <!ENTITY % baz "baz">
]>

This property is read-only, and applies to the following interface:

IXMLDOMDocumentType.

 Last updated on Saturday, April 10, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.