Removes the given attribute from the element.
Syntax
HRESULT removeAttribute( BSTR strAttributeName, VARIANT_BOOL fCaseSensitive, VARIANT_BOOL *pfSuccess );
Parameters
- strAttributeName
- String that specifies the name of the attribute to remove.
- fCaseSensitive
- Boolean value that specifies whether to use a case-sensitive search to locate the attribute. If TRUE, the uppercase and lowercase letters in strAttributeName must match exactly those in the attribute name.
- pfSuccess
- Address of a variable that receives TRUE if the function succeeds, or FALSE otherwise.
Return Value
Returns S_OK if successful, or an error code otherwise.
Remarks
If two or more attributes have the same namediffering only in uppercase and lowercase lettersand fCaseSensitive is false, this method removes only the last attribute to be created with this name. All other attributes of the same name are ignored.
This method is used only by events created from HTML Components.
See Also
getAttribute, setAttribute, IHTMLStyle