Click or drag to resize
ICommandCanExecute Method
Defines the method that determines whether the command can execute in its current state.

Namespace: System.Windows.Input
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
bool CanExecute(
	Object parameter
)

Parameters

parameter
Type: SystemObject
Data used by the command. If the command does not require data to be passed, this object can be set to null.

Return Value

Type: Boolean
true if this command can be executed; otherwise, false.
See Also