Class RadTextMaskedEntry
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadTextMaskedEntry : RadMaskedEntryBase, IRadMaskedEntryInternal, IRadTextMaskedEntry, IRadMaskedEntry, IView, IElement, ITransform
Constructors
RadTextMaskedEntry()
Declaration
public RadTextMaskedEntry()
Fields
AllowOnlyCompletedValuesProperty
Identifies the AllowOnlyCompletedValues bindable property.
Declaration
public static readonly BindableProperty AllowOnlyCompletedValuesProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsMaskCompletedProperty
Declaration
public static readonly BindableProperty IsMaskCompletedProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
RestrictToAsciiProperty
Identifies the RestrictToAscii bindable property.
Declaration
public static readonly BindableProperty RestrictToAsciiProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ValueFormatProperty
Identifies the ValueFormat bindable property.
Declaration
public static readonly BindableProperty ValueFormatProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ValueProperty
Identifies the Value bindable property.
Declaration
public static readonly BindableProperty ValueProperty
Field Value
Microsoft.Maui.Controls.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
System.Boolean
|
Implements
IsMaskCompleted
Gets a value indicating whether all required inputs have been entered into the formatted string.
Declaration
public bool IsMaskCompleted { get; }
Property Value
System.Boolean
|
RestrictToAscii
Gets or sets a value indicating whether input should be restricted to ascii characters.
Declaration
public bool RestrictToAscii { get; set; }
Property Value
System.Boolean
|
Implements
Value
Gets or sets the text value of the control. The value may be null if the AllowNullValue is true.
Declaration
public string Value { get; set; }
Property Value
System.String
|
Implements
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
ValueFormat
|