ClassMoveCaretCommand
Represents the command to move the caret within a RichTextBox.
Definition
Namespace:Telerik.Windows.Documents.RichTextBoxCommands
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class MoveCaretCommand : RichTextBoxCommandBase, ICommand
Inheritance: objectRichTextBoxCommandBaseMoveCaretCommand
Implements:
Inherited Members
Constructors
MoveCaretCommand(RadRichTextBox)
Initializes a new instance of the MoveCaretCommand class.
Declaration
public MoveCaretCommand(RadRichTextBox editor)
Parameters
editor
The associated RadRichTextBox.
Properties
CanExecuteBehaviorInProtectedDocument
Gets a value indicating whether the behavior of the command can be executed in a protected document.
Declaration
protected override CanExecuteBehaviorInProtectedDocument CanExecuteBehaviorInProtectedDocument { get; }
Property Value
Overrides
CanExecuteInReadOnlyMode
Gets a value indicating whether this command can be executed when RadRichTextBox is read-only. The default implementation returns false.
Declaration
protected override bool CanExecuteInReadOnlyMode { get; }
Property Value
true if this command preserves document's content; otherwise, false.
Overrides
CanExecuteInReadOnlyRange
Gets a value indicating whether this command can be executed when editing context is read-only. The default implementation returns false.
Declaration
protected override bool CanExecuteInReadOnlyRange { get; }
Property Value
Overrides
Methods
CanExecuteOverride(object)
Performs a check whether the command can be executed specific to the command.
ExecuteOverride(object)
Performs the execute action specific to the command.
Declaration
protected override void ExecuteOverride(object parameter)
Parameters
parameter
The command parameter.
Overrides