Class SliderChangeEventArgs<T>
It is used to denote the Slider Change/Changed Event arguments.
Inheritance
System.Object
SliderChangeEventArgs<T>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SliderChangeEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | "T". |
Constructors
SliderChangeEventArgs()
Declaration
public SliderChangeEventArgs()
Properties
IsInteracted
It is used to check whether the event triggered is via user or programmatic way.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
It is used to get the action applied on the Slider.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreviousValue
It is used to get the previous value of the Slider.
Declaration
public T PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
T | The value of the Slider that was previously selected by the user. |
Text
It is used to get the current text or formatted text of the Slider, which is placed in tooltip.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
It is used to get the current value of the Slider.
Declaration
public T Value { get; set; }
Property Value
Type |
---|
T |