ClassRadTextMaskedEntry
Represents a text masked entry control that allows input validation using masks.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadTextMaskedEntry : RadMaskedEntryBase, IRadTextMaskedEntry, IRadMaskedEntry, IView, IElement, ITransform
Inheritance: objectRadMaskedEntryBaseRadTextMaskedEntry
Implements:
Inherited Members
Constructors
RadTextMaskedEntry()
Declaration
public RadTextMaskedEntry()
Fields
AllowOnlyCompletedValuesProperty
Identifies the AllowOnlyCompletedValues bindable property.
Declaration
public static readonly BindableProperty AllowOnlyCompletedValuesProperty
Field Value
BindableProperty
IsMaskCompletedProperty
Identifies the IsMaskCompleted bindable property.
Declaration
public static readonly BindableProperty IsMaskCompletedProperty
Field Value
BindableProperty
RestrictToAsciiProperty
Identifies the RestrictToAscii bindable property.
Declaration
public static readonly BindableProperty RestrictToAsciiProperty
Field Value
BindableProperty
ValueFormatProperty
Identifies the ValueFormat bindable property.
Declaration
public static readonly BindableProperty ValueFormatProperty
Field Value
BindableProperty
ValueProperty
Identifies the Value bindable property.
Declaration
public static readonly BindableProperty ValueProperty
Field Value
BindableProperty
Properties
AllowOnlyCompletedValues
Gets or sets a value indicating whether only valid values are allowed. When this property is set to true, invalid values are not accepted. When this property is set to false invalid values are accepted (i.e. the Value property is set) and the ValueChanging and ValueChanged events are raised.
Declaration
public bool AllowOnlyCompletedValues { get; set; }
Property Value
Implements
IsMaskCompleted
Gets a value indicating whether all required inputs have been entered into the formatted string.
RestrictToAscii
Gets or sets a value indicating whether input should be restricted to ascii characters.
Declaration
public bool RestrictToAscii { get; set; }
Property Value
Implements
Value
Gets or sets the text value of the control. The value may be null if the AllowNullValue is true.
ValueFormat
The ValueFormat allows you to control whether the value can also hold literals and prompt characters.
Declaration
public ValueFormat ValueFormat { get; set; }
Property Value
Implements