Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

Removes an attribute from the collection.

Script Syntax

Copy Code
var 
objXMLDOMNode = oXMLDOMNamedNodeMap.removeNamedItem(
name);

Remarks

Script Parameters

name

String specifying the name of the attribute to remove from the collection.

Script Return Value

Object. Returns the node removed from the collection. Returns Null if the named node is not an attribute.

C/C++ Syntax

Copy Code
HRESULT removeNamedItem(
  BSTR 
name,
  IXMLDOMNode** 
namedItem
);

Remarks

C/C++ Parameters

name

[in] Name of the attribute to remove from the collection.

namedItem

[out, retval] Node removed from the collection. Returns Null if the named node is not an attribute.

C/C++ Return Values

S_OK

Value returned if successful.

S_FALSE

Value when returning Null.

E_FAIL

Value returned if an error occurs.

Requirements

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

General Remarks

This method applies to the following interface:

IXMLDOMNamedNodeMap.