|
| HRESULT | doctype ([out, retval] IDOMDocumentType **result) |
| |
| HRESULT | implementation ([out, retval] IDOMImplementation **result) |
| |
| HRESULT | documentElement ([out, retval] IDOMElement **result) |
| |
| HRESULT | createElement ([in] BSTR tagName, [out, retval] IDOMElement **result) |
| |
| HRESULT | createDocumentFragment ([out, retval] IDOMDocumentFragment **result) |
| |
| HRESULT | createTextNode ([in] BSTR data, [out, retval] IDOMText **result) |
| |
| HRESULT | createComment ([in] BSTR data, [out, retval] IDOMComment **result) |
| |
| HRESULT | createCDATASection ([in] BSTR data, [out, retval] IDOMCDATASection **result) |
| |
| HRESULT | createProcessingInstruction ([in] BSTR target, [in] BSTR data, [out, retval] IDOMProcessingInstruction **result) |
| |
| HRESULT | createAttribute ([in] BSTR name, [out, retval] IDOMAttr **result) |
| |
| HRESULT | createEntityReference ([in] BSTR name, [out, retval] IDOMEntityReference **result) |
| |
| HRESULT | getElementsByTagName ([in] BSTR tagName, [out, retval] IDOMNodeList **result) |
| |
| HRESULT | importNode ([in] IDOMNode *importedNode, [in] BOOL deep, [out, retval] IDOMNode **result) |
| |
| HRESULT | createElementNS ([in] BSTR namespaceURI, [in] BSTR qualifiedName, [out, retval] IDOMElement **result) |
| |
| HRESULT | createAttributeNS ([in] BSTR namespaceURI, [in] BSTR qualifiedName, [out, retval] IDOMAttr **result) |
| |
| HRESULT | getElementsByTagNameNS ([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNodeList **result) |
| |
| HRESULT | getElementById ([in] BSTR elementId, [out, retval] IDOMElement **result) |
| |
| HRESULT | nodeName ([out, retval] BSTR *result) |
| |
| HRESULT | nodeValue ([out, retval] BSTR *result) |
| |
| HRESULT | setNodeValue ([in] BSTR value) |
| |
| HRESULT | nodeType ([out, retval] unsigned short *result) |
| |
| HRESULT | parentNode ([out, retval] IDOMNode **result) |
| |
| HRESULT | childNodes ([out, retval] IDOMNodeList **result) |
| |
| HRESULT | firstChild ([out, retval] IDOMNode **result) |
| |
| HRESULT | lastChild ([out, retval] IDOMNode **result) |
| |
| HRESULT | previousSibling ([out, retval] IDOMNode **result) |
| |
| HRESULT | nextSibling ([out, retval] IDOMNode **result) |
| |
| HRESULT | attributes ([out, retval] IDOMNamedNodeMap **result) |
| |
| HRESULT | ownerDocument ([out, retval] IDOMDocument **result) |
| |
| HRESULT | insertBefore ([in] IDOMNode *newChild, [in] IDOMNode *refChild, [out, retval] IDOMNode **result) |
| |
| HRESULT | replaceChild ([in] IDOMNode *newChild, [in] IDOMNode *oldChild, [out, retval] IDOMNode **result) |
| |
| HRESULT | removeChild ([in] IDOMNode *oldChild, [out, retval] IDOMNode **result) |
| |
| HRESULT | appendChild ([in] IDOMNode *oldChild, [out, retval] IDOMNode **result) |
| |
| HRESULT | hasChildNodes ([out, retval] BOOL *result) |
| |
| HRESULT | cloneNode ([in] BOOL deep, [out, retval] IDOMNode **result) |
| |
| HRESULT | normalize () |
| |
| HRESULT | isSupported ([in] BSTR feature, [in] BSTR version, [out, retval] BOOL *result) |
| |
| HRESULT | namespaceURI ([out, retval] BSTR *result) |
| |
| HRESULT | prefix ([out, retval] BSTR *result) |
| |
| HRESULT | setPrefix ([in] BSTR prefix) |
| |
| HRESULT | localName ([out, retval] BSTR *result) |
| |
| HRESULT | hasAttributes ([out, retval] BOOL *result) |
| |
| HRESULT | isSameNode ([in] IDOMNode *other, [out, retval] BOOL *result) |
| |
| HRESULT | isEqualNode ([in] IDOMNode *other, [out, retval] BOOL *result) |
| |
| HRESULT | textContent ([out, retval] BSTR *result) |
| |
| HRESULT | setTextContent ([in] BSTR text) |
| |
| HRESULT | throwException ([in] BSTR exceptionMessage, [out, retval] BOOL *result) |
| |
| HRESULT | callWebScriptMethod ([in] BSTR name, [in, size_is(cArgs)] const VARIANT args[], [in] int cArgs, [out, retval] VARIANT *result) |
| |
| HRESULT | evaluateWebScript ([in] BSTR script, [out, retval] VARIANT *result) |
| |
| HRESULT | removeWebScriptKey ([in] BSTR name) |
| |
| HRESULT | stringRepresentation ([out, retval] BSTR *stringRepresentation) |
| |
| HRESULT | webScriptValueAtIndex ([in] unsigned int index, [out, retval] VARIANT *result) |
| |
| HRESULT | setWebScriptValueAtIndex ([in] unsigned int index, [in] VARIANT val) |
| |
| HRESULT | setException ([in] BSTR description) |
| |