alexa
menu

Blazor Toolkit

    Show / Hide Table of Contents

    Class TextAreaFocusInEventArgs

    Provides data for the focus in event of the SfTextArea component.

    Inheritance
    System.Object
    TextAreaFocusInEventArgs
    Namespace: Syncfusion.Blazor.Toolkit.Inputs
    Assembly: Syncfusion.Blazor.Toolkit.dll
    Syntax
    public class TextAreaFocusInEventArgs : Object
    Remarks

    This class contains information about the focus in event that occurs when the TextArea receives focus, typically when a user clicks on it or navigates to it using keyboard navigation.

    Constructors

    TextAreaFocusInEventArgs()

    Declaration
    public TextAreaFocusInEventArgs()

    Properties

    Event

    Gets or sets the event parameters from the TextArea component.

    Declaration
    public EventArgs Event { get; set; }
    Property Value
    Type Description
    System.EventArgs

    An System.EventArgs object that contains the event data associated with the TextArea focus in event.

    Remarks

    This property contains details about the focus event, including the source and related timing information.

    Value

    Gets or sets the current value of the SfTextArea when it receives focus.

    Declaration
    public string Value { get; set; }
    Property Value
    Type Description
    System.String

    A string representing the current value of the TextArea when focus is gained. The default value is null.

    Remarks

    This property provides access to the TextArea's value at the moment it gains focus. This can be useful for tracking the initial value when implementing custom focus-based behaviors or validation logic.

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