Class ChangedEventArgs
Provides data for the SfTextBox changed event that occurs when the value of the component is modified.
Inheritance
Namespace: Syncfusion.Blazor.Toolkit.Inputs
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class ChangedEventArgs : Object
Remarks
This event is triggered after the value has been changed and the component has lost focus.
Constructors
ChangedEventArgs()
Declaration
public ChangedEventArgs()
Properties
Event
Gets or sets the event parameters from the TextBox component.
Declaration
public EventArgs Event { get; set; }
Property Value
| Type | Description |
|---|---|
| System.EventArgs | An System.EventArgs object that contains the event data associated with the TextBox changed event. |
IsInteracted
Gets or sets a value indicating whether the event is triggered by user interaction.
Declaration
public bool IsInteracted { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | A System.Boolean value that is true if the component has been interacted with by the user through typing, pasting, or other input methods; otherwise, false if the change was programmatic. The default value is false. |
PreviousValue
Gets or sets the previously entered value of the TextBox before the current change.
Declaration
public string PreviousValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A System.String representing the previous value, or null if no previous value exists. |
Value
Gets or sets the current entered value of the TextBox.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A System.String representing the current value. This property is may be an empty string or null if no text is entered. |