Class InputEventArgs
Interface for input event.
Inheritance
System.Object
InputEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class InputEventArgs : Object
Constructors
InputEventArgs()
Declaration
public InputEventArgs()
Properties
Container
Returns 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
Returns 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
Returns the previously updated value of the TextBox.
Declaration
public string PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Returns the entered value of the TextBox.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |