ClassRadLinkedListNode<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:
cs-api-definition
public class RadLinkedListNode<T>
Inheritance: objectRadLinkedListNode<T>
Derived Classes:
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
Previous
Gets the previous node in the linked list.
Declaration
cs-api-definition
public RadLinkedListNode<T> Previous { get; }
Property Value
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.