EntryExtensions
Class
Provides extension methods and attached properties for Entry controls to support completion commands.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public static class EntryExtensions
Inheritance: objectEntryExtensions
Fields
CompletedCommandProperty
BindableProperty
Identifies the CompletedCommand attached property.
C#
public static BindableProperty CompletedCommandProperty
Methods
Gets the command that is executed when the entry is completed.
C#
public static ICommand GetCompletedCommand(BindableObject bindable)
The bindable object to get the command from.
Returns:The command associated with the entry completion.
Sets the command that is executed when the entry is completed.
C#
public static void SetCompletedCommand(BindableObject bindable, ICommand value)
The bindable object to set the command on.
valueICommandThe command to execute when the entry is completed.