Event arguments for TextChanging event. Provides old text, new text and handled property that indicates whether to cancel the text changes.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class TextChangingEventArgs : EventArgs
Inheritance: objectEventArgsTextChangingEventArgs
Inherited Members
Properties
Gets or sets a value that indicates whether to cancel the text changes.
C#
public bool Cancel { get; set; }
Gets the new text that is about to be entered into the entry.
C#
public string NewText { get; }