alexa
menu

Blazor Toolkit

    Show / Hide Table of Contents

    Class TextAreaFocusOutEventArgs

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

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

    This class contains information about the focus out event that occurs when the TextArea loses focus, typically when a user clicks elsewhere or navigates away using keyboard navigation. This event is commonly used for validation or saving data.

    Constructors

    TextAreaFocusOutEventArgs()

    Declaration
    public TextAreaFocusOutEventArgs()

    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 out event.

    Remarks

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

    Value

    Gets or sets the current value of the SfTextArea when it loses 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 lost. The default value is null.

    Remarks

    This property provides access to the TextArea's value at the moment it loses focus. This is particularly useful for performing validation, formatting, or saving operations after the user has finished entering text.

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