menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FocusOutEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class FocusOutEventArgs

    Provides data for the TextBox focus out event that occurs when the component loses focus. This event is triggered when the user clicks outside the TextBox or navigates away from it.

    Inheritance
    System.Object
    FocusOutEventArgs
    Namespace: Syncfusion.Blazor.Inputs
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class FocusOutEventArgs : Object

    Constructors

    FocusOutEventArgs()

    Declaration
    public FocusOutEventArgs()

    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 lost.

    Declaration
    public string Value { get; set; }
    Property Value
    Type Description
    System.String

    A System.String representing the current value, or null if no value is entered.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved