Class ApplyMaskStartedCommandContext
Provides context for custom commands.
Inheritance
System.Object
ApplyMaskStartedCommandContext
Namespace: Telerik.XamarinForms.Input.MaskedInput
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class ApplyMaskStartedCommandContext : Object
Constructors
ApplyMaskStartedCommandContext(String, String, String, String)
Initializes the ApplyMaskStartedCommandContext
Declaration
public ApplyMaskStartedCommandContext(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
|