Represents the command that is executed when the user taps on the clear button of each token.
Definition
Namespace:Telerik.Maui.Controls.ComboBox
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class ComboBoxRemoveTokenCommand : ComboBoxCommand, INotifyPropertyChanged, ICommand
Inheritance: objectNotifyPropertyChangedBaseComboBoxCommandComboBoxRemoveTokenCommand
Implements:
Inherited Members
Constructors
C#
public ComboBoxRemoveTokenCommand()
Methods
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.
Executes the command with the specified parameter. Override this method to implement the command's behavior and logic.
C#
public override void Execute(object parameter)
The parameter passed to the command.
Overrides: