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

Specifies the selection modification when the input control gets the focus.

Definition

Namespace:Telerik.Maui

Assembly:Telerik.Maui.Core.dll

Syntax:

C#
public enum SelectionOnFocus

Fields

The cursor will be moved at the end of the text.

C#
CursorAtEnd = 2

The cursor will be moved at the start of the text.

C#
CursorAtStart = 1

The whole text will be selected.

C#
SelectAll = 3

Selection will not be modified.

C#
Unchanged = 0