New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a command that sends input from a prompt control, enabling integration with command-based UI patterns.

Definition

Namespace:Telerik.Maui.Controls.PromptInput

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class PromptInputSendCommand : ICommand

Inheritance: objectPromptInputSendCommand

Implements: ICommand

Constructors

C#
public PromptInputSendCommand()

Properties

Gets the associated RadPromptInput control.

C#
public RadPromptInput PromptInput { get; }

Methods

C#
public virtual bool CanExecute(object parameter)
Parameters:parameterobjectReturns:

bool

Implements: ICommand.CanExecute(object)

C#
public virtual void Execute(object parameter)
Parameters:parameterobject

Implements: ICommand.Execute(object)

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: ICommand.CanExecuteChanged