Class FocusInEventArgs
Provides data for the TextBox focus in event that occurs when the component receives focus. This event is triggered when the user clicks on the TextBox or navigates to it using keyboard.
Inheritance
System.Object
FocusInEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class FocusInEventArgs : Object
Constructors
FocusInEventArgs()
Declaration
public FocusInEventArgs()
Properties
Container
Gets the TextBox container element.
Declaration
public ElementReference Container { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An Microsoft.AspNetCore.Components.ElementReference that represents the container element of the TextBox. |
Event
Gets the event parameters from TextBox.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs | An EventArgs object that contains the event data associated with the TextBox event. |
Value
Gets 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, or |