InterfaceIRadMaskedEntry
Defines the contract for a masked entry control that provides input validation and formatting.
Definition
Namespace:Telerik.Maui
Assembly:Telerik.Maui.Core.dll
Syntax:
public interface IRadMaskedEntry : IView, IElement, ITransform
Properties
AllowNullValue
Gets a value indicating whether null values are allowed.
AllowPromptAsInput
Gets a value indicating whether the prompt character can be entered as input.
Culture
Gets the culture information used for formatting and parsing values.
Keyboard
Gets the keyboard type to be used for input.
Declaration
Keyboard Keyboard { get; }
Property Value
Keyboard
Mask
Gets the mask pattern used to format and validate input.
PromptChar
Gets the character used as a placeholder for input positions in the mask.
Methods
ValueChanged(MaskedEntryValueChangedEventArgs)
Called when the value has changed.
Declaration
void ValueChanged(MaskedEntryValueChangedEventArgs args)
Parameters
args
MaskedEntryValueChangedEventArgs
The MaskedEntryValueChangedEventArgs containing the event data.
ValueChanging(MaskedEntryValueChangingEventArgs)
Called when the value is changing, providing an opportunity to cancel the change.
Declaration
void ValueChanging(MaskedEntryValueChangingEventArgs args)
Parameters
args
MaskedEntryValueChangingEventArgs
The MaskedEntryValueChangingEventArgs containing the event data.