Class ChangeEventArgs<T>
Interface for change event.
Inheritance
System.Object
ChangeEventArgs<T>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangeEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the type of ChangeEventArgs. |
Constructors
ChangeEventArgs()
Declaration
public ChangeEventArgs()
Properties
Event
Returns the event parameters from NumericTextBox.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs | The EventArgs object that contains information about the event. |
IsInteracted
Returns true when the value of NumericTextBox is changed by user interaction. Otherwise, it returns false.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreviousValue
Returns the previously entered value of the NumericTextBox.
Declaration
public T PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
T | Previous value of text box. |
Value
Returns the entered value of the NumericTextBox.
Declaration
public T Value { get; set; }
Property Value
Type |
---|
T |