PositionHandler
Represents a delegate that is used to handle position-related events in Telerik's RadRichTextBox.
Definition
Namespace:Telerik.Windows.Documents
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public abstract class PositionHandler
Inheritance: objectPositionHandler
Derived Classes:
Constructors
Properties
Represents a box element in the Telerik document structure, providing functionalities to manipulate the position of various document elements.
public LayoutBox Box { get; protected set; }
Determines whether the position can be moved to the next valid position within the document.
public abstract bool CanMoveToNext { get; }
Determines whether the position can be moved to the previous element.
public abstract bool CanMoveToPrevious { get; }
Methods
Creates a deep copy of the current instance of the PositionHandler.
Retrieves the hash code for the current instance of the PositionHandler.
public override int GetHashCode()
A 32-bit signed integer that is the hash code for the current PositionHandler instance.
Overrides:
Retrieves the parent position handler associated with the current handler.
public abstract PositionHandler GetParentHandler()
The parent PositionHandler of the current handler, or null if there is no parent.
Moves the position to the first element in the collection.
public abstract void MoveToFirst()
Moves the position to the last element within the document.
public abstract void MoveToLast()
Moves the position to the next available element in the document.
public abstract void MoveToNext()
Moves the position to the previous element in the document.
public abstract void MoveToPrevious()