Class BlurEventArgs
Defines the event arguments for the blur event in input components.
Inheritance
System.Object
BlurEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class BlurEventArgs : Object
Remarks
This class is used when an input component loses focus. The blur event typically occurs when users click outside the input field or tab to another element, providing an opportunity to validate input or save changes.
Constructors
BlurEventArgs()
Declaration
public BlurEventArgs()
Properties
Model
Gets or sets the model object associated with the blur event.
Declaration
public object Model { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the component model or data context, or |
Remarks
The model property provides access to the underlying data model of the input component that triggered the blur event. This can be used for validation, data binding, or other model-related operations.