Class ApplyMaskStartedEventArgs
Provides context for ApplyMaskStarted event.
Inheritance
System.Object
ApplyMaskStartedEventArgs
Namespace: Telerik.XamarinForms.Input.MaskedInput
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class ApplyMaskStartedEventArgs : EventArgs
Constructors
ApplyMaskStartedEventArgs(String, String, String, String)
Initializes the ApplyMaskStartedEventArgs.
Declaration
public ApplyMaskStartedEventArgs(string oldDisplayedText, string newDisplayedText, string oldInputValue, string newInputValue)
Parameters
System.String
oldDisplayedText
|
System.String
newDisplayedText
|
System.String
oldInputValue
|
System.String
newInputValue
|
Properties
NewDisplayedText
Gets or sets the string that will be masked.
Declaration
public string NewDisplayedText { get; set; }
Property Value
System.String
|
NewInputValue
Gets or sets the value that will be masked.
Declaration
public string NewInputValue { get; set; }
Property Value
System.String
|
OldDisplayedText
Gets the visible text before input.
Declaration
public string OldDisplayedText { get; }
Property Value
System.String
|
OldInputValue
Gets the input value before input.
Declaration
public string OldInputValue { get; }
Property Value
System.String
|