New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinForms.Documents.RichTextBoxCommands

Assembly:Telerik.WinControls.RadSpreadsheet.dll

Syntax:

C#
public sealed class CanExecuteRoutedEventArgs : EventArgs

Inheritance: objectEventArgsCanExecuteRoutedEventArgs

Inherited Members EventArgs.Empty

Properties

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

C#
public bool CanExecute { get; set; }
Property Value:

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

Gets the command associated with this event.

C#
public ICommand Command { get; }
Property Value:

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

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

C#
public bool ContinueRouting { get; set; }
Property Value:

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

Gets the command specific data.

C#
public object Parameter { get; }
Property Value:

The command data. The default value is null.