Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.45 KB

text-input.md

File metadata and controls

29 lines (21 loc) · 1.45 KB
title page_title description position slug
TextInput
.NET MAUI TextInput Documentation - TextInput
Learn more about the TextInput control used inside the Telerik UI for .NET MAUI Entry controls.
25
entry-textinput

TextInput

The Telerik UI for .NET MAUI TextInput is a control that inherits from the Microsoft .NET MAUI Entry control.

The Telerik UI for .NET MAUI Entry control uses the TextInput control in its control template for the text input. The Telerik UI for .NET MAUI Entry is a templated control, with a ControlTemplate, and in that ControlTemplate there are borders, a close button, and a TextInput.

Along with the properties the Telerik .NET MAUI TextInput control inherits from the Microsoft .NET MAUI Entry control, the Textinput exposes the following properties:

  • SelectionOnFocus (enum of type Telerik.Maui.SelectionOnFocus)—Specifies the text selection behavior when the Entry control receives focus. The available options are:

    • (Default) Unchanged—The selection will not be modified.
    • CursorAtStart—The cursor will be moved at the start of the text.
    • CursorAtEnd—The cursor will be moved at the end of the text.
    • SelectAll—The whole text will be selected.
  • Padding (Thickness)—Defines the padding.

See Also

  • [Entry Overview]({%slug entry-overview%})
  • [Entry Styling]({%slug entry-styling%})
  • [Comparison Between Entry and TextInput]({%slug entry-vs-textinput%})