alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    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
    object
    ChangedEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Inputs
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ChangedEventArgs

    Constructors

    ChangedEventArgs()

    Declaration
    public ChangedEventArgs()

    Properties

    Container

    Gets the TextBox container element.

    Declaration
    public ElementReference Container { get; set; }
    Property Value
    Type Description
    ElementReference

    An 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
    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
    bool

    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
    string

    A 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
    string

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

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