Contains a list of the entities declared in the document type declaration.
Visual Basic Syntax
Set objXMLDOMNamedNodeMap = oXMLDOMDocumentType.entities
C/C++ Syntax
HRESULT get_entities( IXMLDOMNamedNodeMap **entityMap);
Parameters
- entityMap
- [out] List of the general entities, both external and internal, that are present in this document.
C/C++ Return Values
- S_OK
- Value returned if successful.
- E_INVALIDARG
- Value returned if entityMap is null.
Remarks
In the following document type declaration, for example, the node list in this property contains the entities "bat" and "bar" but not "baz".
<!DOCTYPE ex SYSTEM "ex.dtd" [ <!ENTITY bat "bat"> <!ENTITY bar "bar"> <!ENTITY % baz "baz"> ]>