Class InputEventArgs
Provides data for the TextBox input event that occurs during real-time text input. This event is triggered while the user is typing, providing immediate feedback for each character entered.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class InputEventArgs : Object
Constructors
InputEventArgs()
Declaration
public InputEventArgs()
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. |
PreviousValue
Gets the previously updated value of the TextBox before the current input 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 during input.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the current value being entered, or |