Class RadLinkedListNode<T>
Represents a node in a linked list for Telerik's document structure.
Inheritance
Namespace: Telerik.Windows.Documents.DocumentStructure
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class RadLinkedListNode<T> : Object
Type Parameters
T
|
Constructors
RadLinkedListNode(T)
Declaration
public RadLinkedListNode(T value)
Parameters
T
value
|
Properties
Next
Gets the next node in the linked list.
Declaration
public RadLinkedListNode<T> Next { get; }
Property Value
RadLinkedListNode<T>
|
Previous
Gets the previous node in the linked list.
Declaration
public RadLinkedListNode<T> Previous { get; }
Property Value
RadLinkedListNode<T>
The previous RadLinkedListNode<T> instance
if it exists; otherwise, |
Value
Gets or sets the value contained in the linked list node.
Declaration
public T Value { get; set; }
Property Value
T
The value of type |