Class
UpdateActiveSelectionRangeActiveCellCommand

Represents the command used to update the active cell of the active selection range.

Definition

Namespace:Telerik.Windows.Controls.Spreadsheet.Worksheets.Commands

Assembly:Telerik.Windows.Controls.Spreadsheet.dll

Syntax:

cs-api-definition
public class UpdateActiveSelectionRangeActiveCellCommand : RadSheetEditorCommandBase<RadWorksheetEditor>, ICommand

Inheritance: objectRadSheetEditorCommandBase<RadWorksheetEditor>UpdateActiveSelectionRangeActiveCellCommand

Implements: ICommand

Inherited Members RadSheetEditorCommandBase<RadWorksheetEditor>.CanExecute(object)RadSheetEditorCommandBase<RadWorksheetEditor>.Execute(object)RadSheetEditorCommandBase<RadWorksheetEditor>.OnCanExecuteChanged()RadSheetEditorCommandBase<RadWorksheetEditor>.AssociatedSheetEditorRadSheetEditorCommandBase<RadWorksheetEditor>.CanExecuteChanged

Constructors

UpdateActiveSelectionRangeActiveCellCommand(RadWorksheetEditor)

Initializes a new instance of the UpdateActiveSelectionRangeActiveCellCommand class.

Declaration

cs-api-definition
public UpdateActiveSelectionRangeActiveCellCommand(RadWorksheetEditor associatedEditor)

Parameters

associatedEditor

RadWorksheetEditor

The associated editor.

Methods

CanExecuteOverride(object)

Defines the method that determines whether the command can execute in its current state.

Declaration

cs-api-definition
protected override bool CanExecuteOverride(object parameter)

Parameters

parameter

object

Data used by the command. If the command does not require data to be passed, this object can be set to null.

Returns

bool

true if this command can be executed; otherwise, false.

Overrides RadSheetEditorCommandBase<RadWorksheetEditor>.CanExecuteOverride(object)

ExecuteOverride(object)

Defines the method to be called when the command is invoked.

Declaration

cs-api-definition
protected override void ExecuteOverride(object parameter)

Parameters

parameter

object

Data used by the command. If the command does not require data to be passed, this object can be set to null.

Overrides RadSheetEditorCommandBase<RadWorksheetEditor>.ExecuteOverride(object)