Class SliderPropertiesBase
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class SliderPropertiesBase : PropertiesBase
Constructors
SliderPropertiesBase()
Initializes a new instance of the SliderPropertiesBuilder class.
Declaration
public SliderPropertiesBase()
Properties
AnimationSpeed
Specifies the animation speed when animation is enabled.
Declaration
[JsonProperty("animationSpeed")]
public int AnimationSpeed { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The animation speed. |
EnableAnimation
Specifies whether to enable animation.
Declaration
[JsonProperty("enableAnimation")]
public bool EnableAnimation { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
EnablePersistence
Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
MaximumValue
Specifies the maximum value.
Declaration
[JsonProperty("maxValue")]
public int MaximumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The Maximum value. |
MinimumValue
Specifies the minimum value.
Declaration
[JsonProperty("minValue")]
public int MinimumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The Minimum value. |
Orientation
Specifies whether the orientation is horizontal or vertical.
Declaration
[JsonProperty("orientation")]
[JsonConverter(typeof(StringEnumConverter))]
public Orientation Orientation { get; set; }
Property Value
| Type | Description |
|---|---|
| Orientation | The orientation. |
ReadOnly
Specifies whether the control is read only.
Declaration
[JsonProperty("readOnly")]
public bool ReadOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|