Class SliderConfiguration
Represents the configuration for the slider value editor.
Inheritance
object
Namespace: Umbraco.Cms.Core.PropertyEditors
Assembly: Umbraco.Core.dll
Syntax
public class SliderConfiguration
Constructors
View SourceSliderConfiguration()
Declaration
public SliderConfiguration()
Properties
View SourceEnableRange
Gets or sets a value indicating whether range selection is enabled (two handles).
Declaration
[ConfigurationField("enableRange")]
public bool EnableRange { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
MaximumValue
Gets or sets the maximum value of the slider.
Declaration
[ConfigurationField("maxVal")]
public decimal MaximumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |
MinimumValue
Gets or sets the minimum value of the slider.
Declaration
[ConfigurationField("minVal")]
public decimal MinimumValue { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |
Step
Gets or sets the step increment value for the slider.
Declaration
[ConfigurationField("step")]
public decimal Step { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |