Class
PromptInputSendCommand

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:

cs-api-definition
public class PromptInputSendCommand : ICommand

Inheritance: objectPromptInputSendCommand

Implements: ICommand

Constructors

PromptInputSendCommand()

Declaration

cs-api-definition
public PromptInputSendCommand()

Properties

PromptInput

Gets the associated RadPromptInput control.

Declaration

cs-api-definition
public RadPromptInput PromptInput { get; }

Property Value

RadPromptInput

Methods

CanExecute(object)

Declaration

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

Parameters

parameter

object

Returns

bool

Implements ICommand.CanExecute(object)

Execute(object)

Declaration

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

Parameters

parameter

object

Implements ICommand.Execute(object)

RaiseCanExecuteChanged()

Raises the CanExecuteChanged event.

Declaration

cs-api-definition
public void RaiseCanExecuteChanged()

Events

CanExecuteChanged

Occurs when the ability of the command to execute has changed.

Declaration

cs-api-definition
public event EventHandler CanExecuteChanged

Event Value

EventHandler

Implements ICommand.CanExecuteChanged