alexa
menu

Blazor

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

    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.Inputs
    Assembly: Syncfusion.Blazor.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

    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 - 2025 Syncfusion Inc. All Rights Reserved