Class MobileSliderProperties
Class for Slider Properties
Implements
Inherited Members
Namespace: Syncfusion.JavaScript.Mobile.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class MobileSliderProperties : SliderPropertiesBase, IMobileBase
Constructors
MobileSliderProperties()
Initializes a new instance of the MobileSliderProperties class.
Declaration
public MobileSliderProperties()
Properties
Change
Event triggers when the value changed.
Declaration
[JsonProperty("change")]
public string Change { get; set; }
Property Value
Type | Description |
---|---|
System.String | The change. |
Enabled
Specifies whether to enable or disable the control.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableRange
Specifies whether to enable range slider.
Declaration
[JsonProperty("enableRange")]
public bool EnableRange { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IncrementStep
Specifies the step value for incrementation.
Declaration
[JsonProperty("incrementStep")]
public int IncrementStep { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The incrementStep. |
IOS7
Section for ios7 mode specific functionalities.
Declaration
[JsonProperty("ios7")]
public MobileSliderIOS7Properties IOS7 { get; set; }
Property Value
Type | Description |
---|---|
MobileSliderIOS7Properties | The ios7. |
Load
Event triggers before the control get loaded.
Declaration
[JsonProperty("load")]
public string Load { get; set; }
Property Value
Type | Description |
---|---|
System.String | The load. |
RenderMode
Specifies the rendering mode of the control.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("renderMode")]
public RenderMode RenderMode { get; set; }
Property Value
Type | Description |
---|---|
RenderMode | The render mode. |
Slide
Event triggers when touch move happens on the control.
Declaration
[JsonProperty("slide")]
public string Slide { get; set; }
Property Value
Type | Description |
---|---|
System.String | The slide. |
Theme
Specifies the theme.
Declaration
[JsonProperty("theme")]
[JsonConverter(typeof(StringEnumConverter))]
public Theme Theme { get; set; }
Property Value
Type | Description |
---|---|
Theme | The theme. |
TouchEnd
Event triggers when touch end happens on the control.
Declaration
[JsonProperty("touchEnd")]
public string TouchEnd { get; set; }
Property Value
Type | Description |
---|---|
System.String | The touch end. |
TouchStart
Event triggers when touch start happens on the control.
Declaration
[JsonProperty("touchStart")]
public string TouchStart { get; set; }
Property Value
Type | Description |
---|---|
System.String | The touch start. |
Value
Specifies the current value.
Declaration
[JsonProperty("value")]
public int Value { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The value. |
Values
Specifies the values when range slider is enabled.
Declaration
[JsonProperty("values")]
public int[] Values { get; set; }
Property Value
Type | Description |
---|---|
System.Int32[] | The values. |
Windows
Section for windows mode specific functionalities.
Declaration
[JsonProperty("windows")]
public MobileSliderWindowsProperties Windows { get; set; }
Property Value
Type | Description |
---|---|
MobileSliderWindowsProperties | The windows. |