|
| HRESULT | defaultValue ([out, retval] BSTR *result) |
| |
| HRESULT | setDefaultValue ([in] BSTR val) |
| |
| HRESULT | defaultChecked ([out, retval] BOOL *result) |
| |
| HRESULT | setDefaultChecked ([in] BSTR checked) |
| |
| HRESULT | form ([out, retval] IDOMHTMLElement **result) |
| |
| HRESULT | accept ([out, retval] BSTR *result) |
| |
| HRESULT | setAccept ([in] BSTR accept) |
| |
| HRESULT | accessKey ([out, retval] BSTR *result) |
| |
| HRESULT | setAccessKey ([in] BSTR key) |
| |
| HRESULT | align ([out, retval] BSTR *result) |
| |
| HRESULT | setAlign ([in] BSTR align) |
| |
| HRESULT | alt ([out, retval] BSTR *result) |
| |
| HRESULT | setAlt ([in] BSTR alt) |
| |
| HRESULT | checked ([out, retval] BOOL *result) |
| |
| HRESULT | setChecked ([in] BOOL checked) |
| |
| HRESULT | disabled ([out, retval] BOOL *result) |
| |
| HRESULT | setDisabled ([in] BOOL disabled) |
| |
| HRESULT | maxLength ([out, retval] int *result) |
| |
| HRESULT | setMaxLength ([in] int maxLength) |
| |
| HRESULT | name ([out, retval] BSTR *name) |
| |
| HRESULT | setName ([in] BSTR name) |
| |
| HRESULT | readOnly ([out, retval] BOOL *result) |
| |
| HRESULT | setReadOnly ([in] BOOL readOnly) |
| |
| HRESULT | size ([out, retval] unsigned int *result) |
| |
| HRESULT | setSize ([in] unsigned int size) |
| |
| HRESULT | src ([out, retval] BSTR *result) |
| |
| HRESULT | setSrc ([in] BSTR src) |
| |
| HRESULT | tabIndex ([out, retval] int *result) |
| |
| HRESULT | setTabIndex ([in] int tabIndex) |
| |
| HRESULT | type ([out, retval] BSTR *result) |
| |
| HRESULT | setType ([in] BSTR type) |
| |
| HRESULT | useMap ([out, retval] BSTR *result) |
| |
| HRESULT | setUseMap ([in] BSTR useMap) |
| |
| HRESULT | value ([out, retval] BSTR *result) |
| |
| HRESULT | setValue ([in] BSTR value) |
| |
| HRESULT | blur () |
| |
| HRESULT | focus () |
| |
| HRESULT | select () |
| |
| HRESULT | click () |
| |
| HRESULT | setSelectionStart ([in] long start) |
| |
| HRESULT | selectionStart ([out, retval] long *start) |
| |
| HRESULT | setSelectionEnd ([in] long end) |
| |
| HRESULT | selectionEnd ([out, retval] long *end) |
| |
| HRESULT | setValueForUser ([in] BSTR value) |
| |
| HRESULT | tagName ([out, retval] BSTR *result) |
| |
| HRESULT | getAttribute ([in] BSTR name, [out, retval] BSTR *result) |
| |
| HRESULT | setAttribute ([in] BSTR name, [in] BSTR value) |
| |
| HRESULT | removeAttribute ([in] BSTR name) |
| |
| HRESULT | getAttributeNode ([in] BSTR name, [out, retval] IDOMAttr **result) |
| |
| HRESULT | setAttributeNode ([in] IDOMAttr *newAttr, [out, retval] IDOMAttr **result) |
| |
| HRESULT | removeAttributeNode ([in] IDOMAttr *oldAttr, [out, retval] IDOMAttr **result) |
| |
| HRESULT | getElementsByTagName ([in] BSTR name, [out, retval] IDOMNodeList **result) |
| |
| HRESULT | getAttributeNS ([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] BSTR *result) |
| |
| HRESULT | setAttributeNS ([in] BSTR namespaceURI, [in] BSTR qualifiedName, [in] BSTR value) |
| |
| HRESULT | removeAttributeNS ([in] BSTR namespaceURI, [in] BSTR localName) |
| |
| HRESULT | getAttributeNodeNS ([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMAttr **result) |
| |
| HRESULT | setAttributeNodeNS ([in] IDOMAttr *newAttr, [out, retval] IDOMAttr **result) |
| |
| HRESULT | getElementsByTagNameNS ([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] IDOMNodeList **result) |
| |
| HRESULT | hasAttribute ([in] BSTR name, [out, retval] BOOL *result) |
| |
| HRESULT | hasAttributeNS ([in] BSTR namespaceURI, [in] BSTR localName, [out, retval] BOOL *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) |
| |