Class TextAreaInputEventArgs
Provides data for the input event of the SfTextArea component.
Inheritance
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class TextAreaInputEventArgs : Object
Remarks
This class contains information about the input event that occurs while the user is typing or entering text in the TextArea. This event is fired for every character input or deletion.
Constructors
TextAreaInputEventArgs()
Declaration
public TextAreaInputEventArgs()
Properties
PreviousValue
Gets or sets the previously updated value of the SfTextArea.
Declaration
public string PreviousValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A |
Remarks
This property contains the value that was present in the TextArea before the current input occurred. It provides context for tracking incremental changes during text input operations.
Value
Gets or sets the current entered value of the SfTextArea.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A |
Remarks
This property contains the current value as it's being typed. The input event is triggered for each character addition or deletion, making this useful for real-time validation or character counting functionality.