The methods of Org.W3c.Dom.IElement are listed below. For a list of all members, see the IElement Members list.
GetAttribute(string)Retrieves an attribute value by name. | ||
GetAttributeNode(string)Retrieves an attribute node by name. | ||
GetAttributeNodeNS(string, string)Retrieves an Attr node by local name and namespace URI. | ||
GetAttributeNS(string, string)Retrieves an attribute value by local name and namespace URI. | ||
GetElementsByTagName(string)Returns a NodeList of all descendant Elements with a given tag name, in document order. | ||
GetElementsByTagNameNS(string, string)Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order. | ||
HasAttribute(string)Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise. | ||
HasAttributeNS(string, string)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)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)Adds a new attribute node. | ||
SetAttributeNodeNS(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 . | ||