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