INamedNodeMap
Interface
Definition
Namespace:Telerik.Windows.Documents.FormatProviders.Html.Parsing.Dom
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public interface INamedNodeMap
Properties
Methods
Retrieves a node specified by local name and namespace URI. HTML-only DOM implementations do not need to implement this method.
Returns the
csharp
index
th item in the map. If
csharp
index
is greater than or equal to the number of nodes in this map, this
returns
csharp
null
.
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.
C#
INode RemoveNamedItem(string name)
The node removed from this map if a node with such a name exists.
NOT_FOUND_ERR: Raised if there is no node named
csharp
name
in
this map.
NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.