Class
EntryExtensions

Provides extension methods and attached properties for Entry controls to support completion commands.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public static class EntryExtensions

Inheritance: objectEntryExtensions

Fields

CompletedCommandProperty

Identifies the CompletedCommand attached property.

Declaration

cs-api-definition
public static BindableProperty CompletedCommandProperty

Field Value

BindableProperty

Methods

GetCompletedCommand(BindableObject)

Gets the command that is executed when the entry is completed.

Declaration

cs-api-definition
public static ICommand GetCompletedCommand(BindableObject bindable)

Parameters

bindable

BindableObject

The bindable object to get the command from.

Returns

ICommand

The command associated with the entry completion.

SetCompletedCommand(BindableObject, ICommand)

Sets the command that is executed when the entry is completed.

Declaration

cs-api-definition
public static void SetCompletedCommand(BindableObject bindable, ICommand value)

Parameters

bindable

BindableObject

The bindable object to set the command on.

value

ICommand

The command to execute when the entry is completed.