Class CanExecuteRoutedEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.RichTextBoxCommands
Assembly: Telerik.WinControls.RadSpreadsheet.dll
Syntax
public sealed class CanExecuteRoutedEventArgs : EventArgs
  Properties
CanExecute
Gets or sets a value that indicates whether the System.Windows.Input.RoutedCommand associated with this event can be executed on the command target.
Declaration
public bool CanExecute { get; set; }
  Property Value
| 
        System.Boolean
         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
public ICommand Command { get; }
  Property Value
| 
        ICommand
         The command. Unless the command is a custom command, this is generally a System.Windows.Input.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
public bool ContinueRouting { get; set; }
  Property Value
| 
        System.Boolean
         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
public object Parameter { get; }
  Property Value
| 
        System.Object
         The command data. The default value is null.  |