Interface
IRadTextEdit

Defines the contract for text-editing controls in Telerik UI for .NET MAUI. Implementations provide consistent behavior for text selection on focus, padding, text transformation, and pre-commit text change interception.

Definition

Namespace:Telerik.Maui

Assembly:Telerik.Maui.Core.dll

Syntax:

cs-api-definition
public interface IRadTextEdit : ITextInput, IText, ITextStyle, IPlaceholder

Properties

Padding

Gets a value that specifies the padding of the control.

Declaration

cs-api-definition
Thickness Padding { get; }

Property Value

Thickness

SelectionOnFocus

Gets a value that specifies the modification over the text selection when the control receives focus.

Declaration

cs-api-definition
SelectionOnFocus SelectionOnFocus { get; }

Property Value

SelectionOnFocus

Methods

GetTransformedText(string)

Gets the text with the set TextTransform.

Declaration

cs-api-definition
string GetTransformedText(string text)

Parameters

text

string

The text that will be transformed.

Returns

string

The transformed text.

TextChanging(string, string)

Occurs when the text starts to change, but before the Text property is updated.

Declaration

cs-api-definition
bool TextChanging(string oldText, string newText)

Parameters

oldText

string

newText

string

Returns

bool