Interface IRadEntry
Represents the UI component of a IRadEntry that handles proper visualization on different platforms.
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public interface IRadEntry : IEntry, IView, IElement, ITransform, ITextInput, IText, ITextStyle, IPlaceholder, ITextAlignment
Properties
BorderPaint
Gets the color of the text-area.
Declaration
Paint BorderPaint { get; }
Property Value
Microsoft.Maui.Graphics.Paint
|
BorderThickness
Gets the thickness of the text-area.
Declaration
Thickness BorderThickness { get; }
Property Value
Microsoft.Maui.Thickness
|
ClearButtonColor
Gets the color of the clear button.
Declaration
Color ClearButtonColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
CornerRadius
Gets the corner radius of the text-area.
Declaration
CornerRadius CornerRadius { get; }
Property Value
Microsoft.Maui.CornerRadius
|
FocusedBorderPaint
Gets the color of the text-area when focused.
Declaration
Paint FocusedBorderPaint { get; }
Property Value
Microsoft.Maui.Graphics.Paint
|
FocusedBorderThickness
Gets the thickness of the text-area when focused.
Declaration
Thickness FocusedBorderThickness { get; }
Property Value
Microsoft.Maui.Thickness
|
HoveredClearButtonColor
Gets the color of the clear button when hovered.
Declaration
Color HoveredClearButtonColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
IsValueValid
Gets a value indicating whether the Text of the control is valid.
Declaration
bool IsValueValid { get; }
Property Value
System.Boolean
|
PressedClearButtonColor
Gets the color of the clear button when pressed.
Declaration
Color PressedClearButtonColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
ReserveSpaceForErrorView
Gets a value indicating whether space for the error label should always be reserved. When set to true, the inner text-input and the RadEntry do not change sizes when an error is shown. When set to false, the inner text-input and the RadEntry might change size to make space for the error label.
Declaration
bool ReserveSpaceForErrorView { get; }
Property Value
System.Boolean
|
SelectionOnFocus
Gets a value that specifies the modification over the text selection when the control receives focus.
Declaration
SelectionOnFocus SelectionOnFocus { get; }
Property Value
SelectionOnFocus
|
ValidationErrorMessage
Gets a value that contains the message that should be displayed when a validation error occurs.
Declaration
string ValidationErrorMessage { get; }
Property Value
System.String
|
Methods
GetTransformedText(String)
Gets the text with the set TextTransform.
Declaration
string GetTransformedText(string text)
Parameters
System.String
text
The text that will be transformed. |
Returns
System.String
The transformed text. |
TextChanging(String, String)
Occurs when the text in the entry starts to change, but before the Text property is updated.
Declaration
bool TextChanging(string oldText, string newText)
Parameters
System.String
oldText
|
System.String
newText
|
Returns
System.Boolean
|