menu

Blazor

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

    Show / Hide Table of Contents

    Class ChangedEventArgs

    Provides data for the TextBox changed event that occurs when the value of the component is modified. This event is triggered after the value has been changed and the component has lost focus.

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

    Constructors

    ChangedEventArgs()

    Declaration
    public ChangedEventArgs()

    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.

    IsInteracted

    Gets a value indicating whether the event is triggered by user interaction.

    Declaration
    public bool IsInteracted { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if the component has been interacted with by the user; otherwise, false.

    PreviousValue

    Gets the previously entered value of the TextBox before the current change.

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

    A System.String representing the previous value, or null if no previous value exists.

    Value

    Gets the current entered value of the TextBox.

    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