Comment Class |
Namespace: Aspose.Html.Dom
The Comment type exposes the following members.
Name | Description | |
---|---|---|
![]() | Attributes | The attributes property returns a live collection of all attribute nodes registered to the specified node. Attributes is a key/value pair of strings that represents any information regarding that attribute. |
![]() | BaseURI | The read-only baseURI property of the Node interface returns the absolute base URL of the document containing the node. The base URL is used to resolve relative URLs when the browser needs to obtain an absolute URL, for example when processing the HTML img element's src attribute or the xlink:href or href attributes in SVG. |
![]() | ChildNodes | The read-only childNodes property of the Node interface returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments. Note: The NodeList being live means that its content is changed each time new children are added or removed. |
![]() | Data | The character data of the node that implements this interface. (Inherited from CharacterData.) |
![]() | FirstChild | The read-only firstChild property of the Node interface returns the node's first child in the tree, or null if the node has no children. If the node is a Document, this property returns the first node in the list of its direct children. |
![]() | LastChild | The read-only lastChild property of the Node interface returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child elements |
![]() | Length | The number of 16-bit units that are available through data and the substringData method below. This may have the value zero, i.e., CharacterData nodes may be empty. (Inherited from CharacterData.) |
![]() | LocalName | Returns the local part of the qualified name of this node. For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.createElement(), this is always null. |
![]() | NamespaceURI | The Element.namespaceURI read-only property returns the namespace URI of the element, or null if the element is not in a namespace. |
![]() | NextSibling | The read-only nextSibling property of the Node interface returns the node immediately following the specified one in their parent's childNodes, or returns null if the specified node is the last child in the parent element. |
![]() | NodeName | The name of this node, depending on its type. (Overrides NodeNodeName.) |
![]() | NodeType | A code representing the type of the underlying object. (Overrides NodeNodeType.) |
![]() | NodeValue | The value of this node, depending on its type. (Overrides NodeNodeValue.) |
![]() | OwnerDocument | The read-only ownerDocument property of the Node interface returns the top-level document object of the node. |
![]() | ParentElement | The read-only parentElement property of Node interface returns the DOM node's parent Element, or null if the node either has no parent, or its parent isn't a DOM Element. |
![]() | ParentNode | The read-only parentNode property of the Node interface returns the parent of the specified node in the DOM tree. Document and DocumentFragment nodes can never have a parent, so parentNode will always return null. It also returns null if the node has just been created and is not yet attached to the tree. |
![]() | Prefix | The prefix read-only property returns the namespace prefix of the specified element, or null if no prefix is specified. |
![]() | PreviousSibling | The read-only previousSibling property of the Node interface returns the node immediately preceding the specified one in its parent's childNodes list, or null if the specified node is the first in that list. |
![]() | TextContent | This attribute returns the text content of this node and its descendants. When it is defined to be null, setting it has no effect. On setting, any possible children this node may have are removed and, if it the new string is not empty or null, replaced by a single Text node containing the string this attribute is set to. (Overrides NodeTextContent.) |
Name | Description | |
---|---|---|
![]() | AddEventListener(String, IEventListener) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. It works by adding a function, or an object that implements EventListener, to the list of event listeners for the specified event type on the EventTarget on which it's called. If the function or object, is already in the list of event listeners for this target, they are not added a second time. |
![]() | AddEventListener(String, DOMEventHandler, Boolean) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. It works by adding a function, or an object that implements EventListener, to the list of event listeners for the specified event type on the EventTarget on which it's called. If the function or object, is already in the list of event listeners for this target, they are not added a second time. |
![]() | AddEventListener(String, IEventListener, Boolean) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. It works by adding a function, or an object that implements EventListener, to the list of event listeners for the specified event type on the EventTarget on which it's called. If the function or object, is already in the list of event listeners for this target, they are not added a second time. |
![]() | AppendChild | The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, appendChild() moves it from its current position to the new position (there is no requirement to remove the node from its parent node before appending it to some other node). This means that a node can't be in two points of the document simultaneously. So if the node already has a parent, the node is first removed, then appended at the new position. The Node.cloneNode() method can be used to make a copy of the node before appending it under the new parent. Copies made with cloneNode are not be automatically kept in sync. |
![]() | AppendData | Append the string to the end of the character data of the node. (Inherited from CharacterData.) |
![]() | CloneNode | The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not. Cloning a node copies all of its attributes and their values, including intrinsic (inline) listeners. It does not copy event listeners added using addEventListener() or those assigned to element properties (e.g., node.onclick = someFunction). Additionally, for a <canvas> element, the painted image is not copied. |
![]() | CloneNode(Boolean) | The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not. Cloning a node copies all of its attributes and their values, including intrinsic (inline) listeners. It does not copy event listeners added using addEventListener() or those assigned to element properties (e.g., node.onclick = someFunction). Additionally, for a <canvas> element, the painted image is not copied. |
![]() | DeleteData | Remove a range of 16-bit units from the node. (Inherited from CharacterData.) |
![]() | DispatchEvent | Dispatches an Event at the specified EventTarget, (synchronously) invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent(). |
![]() | Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from EventTarget.) |
![]() | Dispose(Boolean) | Releases unmanaged and - optionally - managed resources. (Inherited from Node.) |
![]() | Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Finalizes an instance of the Node class. (Inherited from Node.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetPlatformType | This method is used to retrieve the ECMAScript object . |
![]() | GetType | Gets the type of the current instance. (Inherited from Object.) |
![]() | HasAttributes | The hasAttributes() method of the Element interface returns a boolean value indicating whether the current element has any attributes or not. |
![]() | HasChildNodes | The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not. |
![]() | InsertBefore | The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node. If the given node already exists in the document, insertBefore() moves it from its current position to the new position. (That is, it will automatically be removed from its existing parent before appending it to the specified new parent.) This means that a node cannot be in two locations of the document simultaneously. |
![]() | InsertData | Insert a string at the specified 16-bit unit offset. (Inherited from CharacterData.) |
![]() | IsDefaultNamespace | The isDefaultNamespace() method of the Node interface accepts a namespace URI as an argument. It returns a boolean value that is true if the namespace is the default namespace on the given node and false if not. Note: The default namespace of an HTML element is always "". For a SVG element, it is set by the xmlns attribute. |
![]() | IsEqualNode | The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes. |
![]() | IsSameNode | The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object). Note: There is no need to use isSameNode(); instead use the === strict equality operator. |
![]() | LookupNamespaceURI | The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the namespace URI associated with it on the given node if found (and null if not). |
![]() | LookupPrefix | The lookupPrefix() method of the Node interface returns a String containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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. |
![]() | RemoveChild | The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node. Note: As long as a reference is kept on the removed child, it still exists in memory, but is no longer part of the DOM. It can still be reused later in the code. If the return value of removeChild() is not stored, and no other reference is kept, it will be automatically deleted from memory after a short time. |
![]() | RemoveEventListener(String, IEventListener) | This method allows the removal of event listeners from the event target. If an is removed from an 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, Boolean) | This method allows the removal of event listeners from the event target. If an is removed from an 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, Boolean) | This method allows the removal of event listeners from the event target. If an is removed from an 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 | 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. |
![]() | ReplaceData | Replace the characters starting at the specified 16-bit unit offset with the specified string. (Inherited from CharacterData.) |
![]() | SubstringData | Extracts a range of data from the node. (Inherited from CharacterData.) |
![]() | ToString | Returns a String that represents this instance. (Inherited from CharacterData.) |