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 |
Constructors
SliderChangeEventArgs()
Declaration
public SliderChangeEventArgs()
Properties
Action
It is used to get the action applied on the Slider.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
PreviousValue
It is used to get the previous value of the Slider.
Declaration
public T PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
T |
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 |
Value
It is used to get the current value of the Slider.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |