Class
CanExecuteRoutedEventArgs

Definition

Namespace:Telerik.WinForms.Documents.RichTextBoxCommands

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

cs-api-definition
public sealed class CanExecuteRoutedEventArgs : EventArgs

Inheritance: objectEventArgsCanExecuteRoutedEventArgs

Inherited Members EventArgs.Empty

Properties

CanExecute

Gets or sets a value that indicates whether the RoutedCommand associated with this event can be executed on the command target.

Declaration

cs-api-definition
public bool CanExecute { get; set; }

Property Value

bool

true if the event can be executed on the command target; otherwise, false. The default value is false.

Command

Gets the command associated with this event.

Declaration

cs-api-definition
public ICommand Command { get; }

Property Value

ICommand

The command. Unless the command is a custom command, this is generally a RoutedCommand. There is no default value.

ContinueRouting

Determines whether the input routed event that invoked the command should continue to route through the element tree.

Declaration

cs-api-definition
public bool ContinueRouting { get; set; }

Property Value

bool

true if the routed event should continue to route through element tree; otherwise, false. The default value is false.

Parameter

Gets the command specific data.

Declaration

cs-api-definition
public object Parameter { get; }

Property Value

object

The command data. The default value is null.