alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class TextAreaInputEventArgs

    Provides data for the input event of the SfTextArea component.

    Inheritance
    System.Object
    TextAreaInputEventArgs
    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 string representing the previous value of the TextArea. The default value is null.

    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 string representing the current value being input in the TextArea. The default value is null.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved