CanExecuteRequestedEventArgs.CanExecute Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property bool CanExecute { bool get(); void set(bool value); };
bool CanExecute();
void CanExecute(bool value);
public bool CanExecute { get; set; }
var boolean = canExecuteRequestedEventArgs.canExecute;
canExecuteRequestedEventArgs.canExecute = boolean;
Public Property CanExecute As Boolean
Property Value
Boolean
bool
true
if the ICommand
is able to execute; otherwise, false
.