AutoCompleteCommand
Class
Abstract class that defines the common API for all commands that can be executed by a RadAutoComplete instance.
Definition
Namespace:Telerik.Maui.Controls.AutoComplete
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public abstract class AutoCompleteCommand : NotifyPropertyChangedBase, INotifyPropertyChanged, ICommand
Inheritance: objectNotifyPropertyChangedBaseAutoCompleteCommand
Derived Classes:
Implements:
Inherited Members
Constructors
C#
protected AutoCompleteCommand()
Properties
Gets the RadAutoComplete instance associated with this command.
C#
public RadAutoComplete AutoComplete { get; }
Methods
Defines the method to be called when the command is invoked.
Raises the CanExecuteChanged event.
C#
public void RaiseCanExecuteChanged()
Events
Occurs when the ability of the command to execute has changed.
C#
public event EventHandler CanExecuteChanged
Implements: