Class
RadLinkedListNode<T>

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:

cs-api-definition
public class RadLinkedListNode<T>

Inheritance: objectRadLinkedListNode<T>

Derived Classes: BoxNode

Constructors

RadLinkedListNode(T)

Declaration

cs-api-definition
public RadLinkedListNode(T value)

Parameters

value

T

Properties

Next

Gets the next node in the linked list.

Declaration

cs-api-definition
public RadLinkedListNode<T> Next { get; }

Property Value

RadLinkedListNode<T>

Previous

Gets the previous node in the linked list.

Declaration

cs-api-definition
public RadLinkedListNode<T> Previous { get; }

Property Value

RadLinkedListNode<T>

The previous RadLinkedListNode<T> instance if it exists; otherwise, null.

Value

Gets or sets the value contained in the linked list node.

Declaration

cs-api-definition
public T Value { get; set; }

Property Value

T

The value of type T that the node holds.