InterfaceINamedNodeMap
Definition
Namespace:Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public interface INamedNodeMap
Properties
Methods
GetNamedItem(string)
Retrieves a node specified by name.
GetNamedItemNS(string, string)
Retrieves a node specified by local name and namespace URI. HTML-only DOM implementations do not need to implement this method.
Item(int)
Returns the
indexth item in the map. If index
is greater than or equal to the number of nodes in this map, this
returns null.RemoveNamedItem(string)
Removes a node specified by name. When this map contains the attributes attached to an element, if the removed attribute is known to have a default value, an attribute immediately appears containing the default value as well as the corresponding namespace URI, local name, and prefix when applicable.
Declaration
INode RemoveNamedItem(string name)
Parameters
name
Returns
The node removed from this map if a node with such a name exists.
Exceptions
NOT_FOUND_ERR: Raised if there is no node named
name in
this map.
NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.