IHTMLDOMAttribute interface

Provides programmatic access to the properties and methods that are common to all element objects.

Members

The IHTMLDOMAttribute interface inherits from the IDispatch interface. IHTMLDOMAttribute also has these types of members:

  • Properties

Properties

The IHTMLDOMAttribute interface has these properties.

Property Description

nodeName

Gets the name of a particular type of node.

nodeValue

Gets or sets the value of a node.

specified

Gets a value that indicates whether an attribute is explicitly given a value.

 

Remarks

To get a pointer to this interface, use the IHTMLAttributeCollection::item method to get a pointer to the object's IDispatch interface, and then use the QueryInterface method to get a pointer to the IHTMLDOMAttribute interface.

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows 2000 Server

Header

Mshtml.h

IDL

Mshtml.idl

DLL

Mshtml.dll

See also

IDispatch

IHTMLDOMAttribute2