Class Node
An abstract class that provides a base for all the elements in a DocumentAdv object.
Implements
Namespace: Syncfusion.Windows.Controls.RichTextBoxAdv
Assembly: Syncfusion.SfRichTextBoxAdv.WPF.dll
Syntax
public abstract class Node : BaseNode, INode
Constructors
Node(Node)
Declaration
public Node(Node owner)
Parameters
Type | Name | Description |
---|---|---|
Node | owner | The owner of the Node. The value can be null. |
Properties
NextNode
Gets the next sibling of the Node.
Declaration
public Node NextNode { get; }
Property Value
Type | Description |
---|---|
Node | The Node instance that represents the next sibling. |
Owner
Gets the owner.
Declaration
public Node Owner { get; }
Property Value
Type | Description |
---|---|
Node | The Node instance that represents the owner. |
PreviousNode
Gets the previous sibling of the Node.
Declaration
public Node PreviousNode { get; }
Property Value
Type | Description |
---|---|
Node | The Node that represents the previous sibling. |