AddEventListener(string, IEventListener) | This method allows the registration of event listeners on the event target. |
AddEventListener(string, DOMEventHandler, bool) | This method allows the registration of event listeners on the event target. |
AddEventListener(string, IEventListener, bool) | This method allows the registration of event listeners on the event target. |
AppendChild(Node) | Adds the node newChild to the end of the list of children of this node. If the newChild is already in the tree, it is first removed. |
AttachShadow(ShadowRootMode) | Creates shadow root and attaches it to current element. |
CloneNode() | Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data. |
CloneNode(bool) | Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (parentNode is null) and no user data. |
DispatchEvent(Event) | This method allows the dispatch of events into the implementations event model. |
Dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
GetAttribute(string) | Retrieves an attribute value by name. |
GetAttributeNames() | Returns the attribute names of the element as an Array of strings. If the element has no attributes it returns an empty array. |
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. |
GetBBox() | Returns the tight bounding box in current user space (i.e., after application of the ‘transform’ attribute, if any) on the geometry of all contained graphics elements, exclusive of stroking, clipping, masking and filter effects). Note that getBBox must return the actual bounding box at the time the method was called, even in case the element has not yet been rendered. |
GetComputedTextLength() | The total sum of all of the advance values from rendering all of the characters within this element, including the advance value on the glyphs (horizontal or vertical), the effect of properties ‘kerning’, ‘letter-spacing’ and ‘word-spacing’ and adjustments due to attributes ‘dx’ and ‘dy’ on ‘tspan’ elements. For non-rendering environments, the user agent shall make reasonable assumptions about glyph metrics. |
GetCTM() | Returns the transformation matrix from current user units (i.e., after application of the ‘transform’ attribute, if any) to the viewport coordinate system for the nearestViewportElement. |
GetElementsByClassName(string) | Returns a live NodeList object containing all the elements in the document that have all the classes specified in argument. http://www.w3.org/TR/dom/ |
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. |
GetNumberOfChars() | Returns the total number of characters available for rendering within the current element, which includes referenced characters from ‘tref’ reference, regardless of whether they will be rendered. Effectively, this is equivalent to the length of the Node::textContent attribute from DOM Level 3 Core ([DOM3], section 1.4), if that attribute also expanded ‘tref’ elements. |
virtual GetPlatformType() | This method is used to retrieve ECMAScript object Type. |
GetScreenCTM() | Returns the transformation matrix from current user units (i.e., after application of the ‘transform’ attribute, if any) to the parent user agent’s notice of a “pixel”. For display devices, ideally this represents a physical screen pixel. For other devices or environments where physical pixel sizes are not known, then an algorithm similar to the CSS2 definition of a “pixel” can be used instead. Note that null is returned if this element is not hooked into the document tree. This method would have been more aptly named as getClientCTM, but the name getScreenCTM is kept for historical reasons. |
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. |
HasAttributes() | Returns whether this node (if it is an element) has any attributes |
HasChildNodes() | Returns whether this node has any children. |
InsertBefore(Node, Node) | Inserts the node before the existing child node child. If child is null, insert node at the end of the list of children. If child is a DocumentFragment object, all of its children are inserted, in the same order, before child. If the child is already in the tree, it is first removed. |
IsDefaultNamespace(string) | This method checks if the specified namespaceURI is the default namespace or not. |
IsEqualNode(Node) | Tests whether two nodes are equal. This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with Node.isSameNode(). All nodes that are the same will also be equal, though the reverse may not be true. |
IsSameNode(Node) | Returns whether this node is the same node as the given one. This method provides a way to determine whether two Node references returned by the implementation reference the same object. When two Node references are references to the same object, even if through a proxy, the references may be used completely interchangeably, such that all attributes have the same values and calling the same DOM method on either reference always has exactly the same effect. |
LookupNamespaceURI(string) | Look up the namespace URI associated to the given prefix, starting from this node. |
LookupPrefix(string) | Look up the prefix associated to the given namespace URI, starting from this node. The default namespace declarations are ignored by this method. See Namespace Prefix Lookup for details on the algorithm used by this method. |
Normalize() | Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a “normal” form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter “normalize-characters” of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes. |
QuerySelector(string) | Returns the first Element in document, which match selector |
QuerySelectorAll(string) | Returns a NodeList of all the Elements in document, which match selector |
Remove() | Removes this instance. |
RemoveAttribute(string) | Removes an attribute by name. |
RemoveAttributeNode(Attr) | Removes the specified attribute node. |
RemoveAttributeNS(string, string) | Removes an attribute by local name and namespace URI. |
RemoveChild(Node) | Removes the child node indicated by oldChild from the list of children, and returns it. |
RemoveEventListener(string, IEventListener) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
RemoveEventListener(string, DOMEventHandler, bool) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
RemoveEventListener(string, IEventListener, bool) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
ReplaceChild(Node, Node) | Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed. |
SetAttribute(string, string) | Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter |
SetAttributeNode(Attr) | Adds a new attribute node. If an attribute with that name (nodeName) is already present in the element, it is replaced by the new one. |
SetAttributeNodeNS(Attr) | Adds a new attribute. If an attribute with that local name and that namespace URI is already present in the element, it is replaced by the new one. |
SetAttributeNS(string, string, string) | Adds a new attribute. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. |
ToggleAttribute(string) | If force is not given, “toggles” qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName. |
ToggleAttribute(string, bool) | If force is not given, “toggles” qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName. |
override ToString() | Returns a String that represents this instance. |