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