entities Property (Windows CE 5.0)
Contains a list of the entities declared in the DOCTYPE declaration.
[Script]
Script Syntax
varobjXMLDOMNamedNodeMap=oXMLDOMDocumentType.entities;
Script Parameters
None.
Script Return Value
Object. List of the general entities, both external and internal, that are present in this document.
[C/C++]
C/C++ Syntax
HRESULT get_entities(IXMLDOMNamedNodeMap** entityMap);
C/C++ Parameters
- entityMap
[out, retval] 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.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.
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:
Send Feedback on this topic to the authors