Class ChangedEventArgs
Provides data for the TextBox changed event that occurs when the value of the component is modified. This event is triggered after the value has been changed and the component has lost focus.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangedEventArgs : Object
Constructors
ChangedEventArgs()
Declaration
public ChangedEventArgs()
Properties
Container
Gets the TextBox container element.
Declaration
public ElementReference Container { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An Microsoft.AspNetCore.Components.ElementReference that represents the container element of the TextBox. |
Event
Gets the event parameters from TextBox.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs | An EventArgs object that contains the event data associated with the TextBox event. |
IsInteracted
Gets a value indicating whether the event is triggered by user interaction.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
PreviousValue
Gets 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 |
Value
Gets 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, or |