removeAttribute Method (Windows Embedded CE 6.0)

1/6/2010

Removes or replaces the named attribute.

Script Syntax

oXMLDOMElement.removeAttribute(name);

Remarks

Ee503065.collapse(en-US,WinEmbedded.60).gifScript Parameters

  • name
    String specifying the name of the attribute to be removed or replaced.

Ee503065.collapse(en-US,WinEmbedded.60).gifScript Return Value

None.

Ee503065.collapse(en-US,WinEmbedded.60).gifC/C++ Syntax

HRESULT removeAttribute(
  BSTR name
);

Remarks

Ee503065.collapse(en-US,WinEmbedded.60).gifC/C++ Parameters

  • name
    [in] Name of the attribute to be removed or replaced.

Ee503065.collapse(en-US,WinEmbedded.60).gifC/C++ Return Values

  • S_OK
    Value returned if successful.
  • S_FALSE
    Value returned when no attribute with the given name is found.
  • E_FAIL
    Value returned if an error occurs.

Ee503065.collapse(en-US,WinEmbedded.60).gifRequirements

Header msxml2.h, msxml2.idl
Library uuid.lib
Windows Embedded CE Windows CE .NET 4.0 and later

General Remarks

If the specified attribute has a default value, this is equivalent to a replace operation: The current value is removed and a new attribute is created with the default value. This operation also resets the specified Property of IXMLDOMNode.

This method applies to the following objects and interfaces:

IXMLDOMElement and IXMLDOMNode.

See Also

Reference

XML DOM Methods

Other Resources