Org.W3c.Dom.IElement Members

The members of Org.W3c.Dom.IElement are listed below.

Public Properties

[read-only]
SchemaTypeInfoITypeInfo. The type information associated with this element.
[read-only]
TagNamestring. The name of the element.

Public Methods

GetAttribute(string) : string
Retrieves an attribute value by name.
GetAttributeNode(string) : IAttr
Retrieves an attribute node by name.
GetAttributeNodeNS(string, string) : IAttr
Retrieves an Attr node by local name and namespace URI.
GetAttributeNS(string, string) : string
Retrieves an attribute value by local name and namespace URI.
GetElementsByTagName(string) : INodeList
Returns a NodeList of all descendant Elements with a given tag name, in document order.
GetElementsByTagNameNS(string, string) : INodeList
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
HasAttribute(string) : bool
Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
HasAttributeNS(string, string) : bool
Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
RemoveAttribute(string)
Removes an attribute by name.
RemoveAttributeNode(IAttr) : IAttr
Removes the specified attribute node.
RemoveAttributeNS(string, string)
Removes an attribute by local name and namespace URI.
SetAttribute(string, string)
Adds a new attribute.
SetAttributeNode(IAttr) : IAttr
Adds a new attribute node.
SetAttributeNodeNS(IAttr) : IAttr
Adds a new attribute.
SetAttributeNS(string, string, string)
Adds a new attribute.
SetIdAttribute(string, bool)
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
SetIdAttributeNode(IAttr, bool)
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
SetIdAttributeNS(string, string, bool)
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .