Class ChangedEventArgs
Interface for changed event.
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 Gets or sets a value indicating whether the event is triggered by user interaction.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
PreviousValue
Gets the previously entered value of the TextBox.
Declaration
public string PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Return the string value. |
Value
Gets the entered value of the TextBox.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Return the string value. |