Class RichTextBoxCommandBase
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.RichTextBoxCommands
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public abstract class RichTextBoxCommandBase : ICommand
Constructors
RichTextBoxCommandBase(RadRichTextBox)
Properties
AssociatedRichTextBox
Gets the associated rich text box.
Declaration
public RadRichTextBox AssociatedRichTextBox { get; }
Property Value
RadRichTextBox
The associated rich text box. |
CanExecuteBehaviorInProtectedDocument
Gets a value indicating whether the behavior of the command can be executed in a protected document.
Declaration
protected virtual CanExecuteBehaviorInProtectedDocument CanExecuteBehaviorInProtectedDocument { get; }
Property Value
CanExecuteBehaviorInProtectedDocument
|
CanExecuteInReadOnlyMode
Gets a value indicating whether this command can be executed when RadRichTextBox is read-only. The default implementation returns false.
Declaration
protected virtual bool CanExecuteInReadOnlyMode { get; }
Property Value
System.Boolean
|
CanExecuteInReadOnlyRange
Gets a value indicating whether this command can be executed when editing context is read-only. The default implementation returns false.
Declaration
protected virtual bool CanExecuteInReadOnlyRange { get; }
Property Value
System.Boolean
|
Enabled
Gets or sets a value indicating whether the command is enabled.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
IsDeletingCommand
Declaration
protected virtual bool IsDeletingCommand { get; }
Property Value
System.Boolean
|
ShouldFocusCaretAfterExecute
Declaration
protected virtual bool ShouldFocusCaretAfterExecute { get; }
Property Value
System.Boolean
|
SupportedTargets
Gets the supported CommandTargets for the command.
Declaration
protected virtual CommandTargets SupportedTargets { get; }
Property Value
CommandTargets
|
Methods
CanExecute(Object)
Declaration
public bool CanExecute(object parameter)
Parameters
System.Object
parameter
|
Returns
System.Boolean
|
Implements
CanExecuteOverride(Object)
Performs a check whether the command can be executed specific to the command.
Declaration
protected virtual bool CanExecuteOverride(object parameter)
Parameters
System.Object
parameter
The command parameter. |
Returns
System.Boolean
|
Execute()
Declaration
public void Execute()
Execute(Object)
Declaration
public void Execute(object parameter)
Parameters
System.Object
parameter
|
Implements
Execute(Object, Boolean)
Declaration
public void Execute(object parameter, bool focusCaret)
Parameters
System.Object
parameter
|
System.Boolean
focusCaret
|
ExecuteOverride(Object)
Performs the execute action specific to the command.
Declaration
protected abstract void ExecuteOverride(object parameter)
Parameters
System.Object
parameter
The command parameter. |
GetCurrentParagraphStyle()
GetCurrentSectionStyle()
GetCurrentSpanStyle()
GetSelectedInlineOrSelectCurrent()
OnCanExecuteChanged()
Declaration
protected void OnCanExecuteChanged()
UpdateSectionStyle()
Declaration
protected virtual void UpdateSectionStyle()
UpdateSpanStyle()
Declaration
protected virtual void UpdateSpanStyle()
Events
CanExecuteChanged
Declaration
public event EventHandler CanExecuteChanged
Event Type
System.EventHandler
|