XamlUICommand.CanExecute(Object) Method
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.
Retrieves whether the command can execute in its current state.
public:
virtual bool CanExecute(Platform::Object ^ parameter) = CanExecute;
bool CanExecute(IInspectable const& parameter);
public bool CanExecute(object parameter);
function canExecute(parameter)
Public Function CanExecute (parameter As Object) As Boolean
Parameters
- parameter
-
Object
Platform::Object
IInspectable
Data used by the command. If the command does not require data, this object can be set to null
.
Returns
Boolean
bool
true
if this command can be executed; otherwise, false
.
Implements
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(System.Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(Platform::Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(IInspectable)
Remarks
A command source typically calls this method when the CanExecuteChanged event is raised.