Class
ComboBoxRemoveTokenCommand

Represents the command that is executed when the user taps on the clear button of each token.

Definition

Constructors

ComboBoxRemoveTokenCommand()

Declaration

cs-api-definition
public ComboBoxRemoveTokenCommand()

Methods

CanExecute(object)

Determines whether the command can execute with the specified parameter in its current state. Override this method to implement custom logic for determining command availability.

Declaration

cs-api-definition
public override bool CanExecute(object parameter)

Parameters

parameter

object

The parameter passed to the command.

Returns

bool

true if the command can be executed; otherwise, false.

Overrides ComboBoxCommand.CanExecute(object)

Execute(object)

Executes the command with the specified parameter. Override this method to implement the command's behavior and logic.

Declaration

cs-api-definition
public override void Execute(object parameter)

Parameters

parameter

object

The parameter passed to the command.

Overrides ComboBoxCommand.Execute(object)