Class TextChangingEventArgs
Event arguments for TextChanging event. Provides old text, new text and handled property that indicates whether to cancel the text changes.
Inheritance
System.Object
TextChangingEventArgs
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class TextChangingEventArgs : EventArgs
Properties
Cancel
Gets or sets a value that indicates whether to cancel the text changes.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
NewText
Gets the new text that is about to be entered into the entry.
Declaration
public string NewText { get; }
Property Value
System.String
|
OldText
Gets the old text that is entered into the entry.
Declaration
public string OldText { get; }
Property Value
System.String
|