Class FocusOutEventArgs
Provides data for the SfTextBox focus out event that occurs when the component loses focus.
Inheritance
System.Object
FocusOutEventArgs
Namespace: Syncfusion.Blazor.Toolkit.Inputs
Assembly: Syncfusion.Blazor.Toolkit.dll
Syntax
public class FocusOutEventArgs : Object
Remarks
This event is triggered when the user clicks outside the TextBox or navigates away from it using keyboard navigation.
Constructors
FocusOutEventArgs()
Declaration
public FocusOutEventArgs()
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 out event. |
Remarks
This property contains details about the blur event, including timing and focus-related information.
Value
Gets or sets the current entered value of the TextBox when focus is lost.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | A System.String representing the current value at the time focus was lost. This property is may be an empty string or null if no text is entered. |