Click or drag to resize

CefDomNode Class

Class used to represent a DOM node. The methods of this class should only be called on the render process main thread.
Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefDomNode

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefDomNode : IDisposable

The CefDomNode type exposes the following members.

Properties
 NameDescription
Public propertyDocument Returns the document associated with this node.
Public propertyElementTagName The following methods are valid only for element nodes. Returns the tag name of this element.
Public propertyFirstChild Return the first child node.
Public propertyFormControlElementType Returns the type of this form control element node.
Public propertyHasAttributes Returns true if this element has attributes.
Public propertyHasChildren Returns true if this node has child nodes.
Public propertyInnerText Returns the inner text of the element.
Public propertyIsEditable Returns true if this is an editable node.
Public propertyIsElement Returns true if this is an element node.
Public propertyIsFormControlElement Returns true if this is a form control element node.
Public propertyIsText Returns true if this is a text node.
Public propertyLastChild Returns the last child node.
Public propertyName Returns the name of this node.
Public propertyNextSibling Returns the next sibling node.
Public propertyNodeType Returns the type for this node.
Public propertyParent Returns the parent node.
Public propertyPreviousSibling Returns the previous sibling node.
Public propertyValue Returns the value of this node.
Top
Methods
 NameDescription
Public methodDisposeReleases all resources used by the CefDomNode
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalize
(Overrides ObjectFinalize)
Public methodGetAsMarkup Returns the contents of this node as markup.
Public methodGetAttribute Returns the element attribute named |attrName|.
Public methodGetAttributes Returns a map of all element attributes.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodHasAttribute Returns true if this element has an attribute named |attrName|.
Public methodIsSame Returns true if this object is pointing to the same handle as |that| object.
Public methodSetAttribute Set the value for the element attribute named |attrName|. Returns true on success.
Public methodSetValue Set the value of this node. Returns true on success.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also