Class TextAreaFocusInEventArgs
Provides data for the focus in event of the SfTextArea component.
Inherited Members
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class TextAreaFocusInEventArgs
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
Value
Gets or sets the current value of the SfTextArea when it receives focus.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A |
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.