RadTextMaskedEntry
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
public RadTextMaskedEntry()
Fields
AllowOnlyCompletedValuesProperty
BindableProperty
Identifies the AllowOnlyCompletedValues bindable property.
public static readonly BindableProperty AllowOnlyCompletedValuesProperty
IsMaskCompletedProperty
BindableProperty
Identifies the IsMaskCompleted bindable property.
public static readonly BindableProperty IsMaskCompletedProperty
RestrictToAsciiProperty
BindableProperty
Identifies the RestrictToAscii bindable property.
public static readonly BindableProperty RestrictToAsciiProperty
ValueFormatProperty
BindableProperty
Identifies the ValueFormat bindable property.
public static readonly BindableProperty ValueFormatProperty
ValueProperty
BindableProperty
Identifies the Value bindable property.
public static readonly BindableProperty ValueProperty
Properties
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.
public bool AllowOnlyCompletedValues { get; set; }
Implements:
Gets a value indicating whether all required inputs have been entered into the formatted string.
public bool IsMaskCompleted { get; }
Gets or sets a value indicating whether input should be restricted to ascii characters.
public bool RestrictToAscii { get; set; }
Implements:
Gets or sets the text value of the control. The value may be null if the AllowNullValue is true.
public string Value { get; set; }
Implements:
The ValueFormat allows you to control whether the value can also hold literals and prompt characters.
public ValueFormat ValueFormat { get; set; }
Implements: