Class FocusInEventArgs
Provides data for the SfTextBox focus in event that occurs when the component receives focus.
Inheritance
System.Object
FocusInEventArgs
Namespace: Syncfusion.Blazor.Toolkit.Inputs
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class FocusInEventArgs : Object
Remarks
This event is triggered when the user clicks on the TextBox or navigates to it using keyboard navigation (Tab key).
Constructors
FocusInEventArgs()
Declaration
public FocusInEventArgs()
Properties
Event
Gets or sets the event parameters from the TextBox 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 TextBox 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 entered value of the TextBox when focus is received.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A System.String representing the current value at the time focus was received, or null if no value is entered. |