New to Telerik UI for WPFStart a free 30-day trial

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: BoxNode

Constructors

C#
public RadLinkedListNode(T value)
Parameters:valueT

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; }
Property Value:

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; }
Property Value:

The value of type T that the node holds.