# GraffitiSlider
Class Inherits GraffitiUIControl
## About
GraffitiSlider is a custom slider control that supports both single and ranged values.
**
Features
**
*
Single or Ranged Value Selection
*
Maximum and Minimum Properties for Variable Values
*
ColorGroup Support
## Preview




Previous
Next
## Compatibility
### Framework API Version
| 1.0 | 2.0 |
| :---: | :---: |
| False | True |
### Console
| 32-Bit | 64-Bit |
| :---: | :---: |
| True | True |
### Desktop
| 32-Bit | 64-Bit |
| :---: | :---: |
| True | True |
### iOS
| 32-Bit | 64-Bit |
| :---: | :---: |
| False | True |
### Web
| 32-Bit | 64-Bit |
| :---: | :---: |
| True | True |
## Enumerations
| Name | Value | Description |
| --- | :---: | --- |
| Types | Single <br > Range | Supported value selection models. |
## Event Definitions
| Name | Parameters | Return Type | Description |
| --- | :---: | :---: | --- |
| ValueChanged | (None) | (None) | Triggered when the user has changed the value. |
## Properties
| Name | Type | Default Value | Description |
| --- | :---: | :---: | --- |
| LargeChange | Integer | (None) | Value to increase/decrease when the user clicks on the slider track. |
| Maximum | Integer | (None) | Maximum slider value. |
| Minimum | Integer | (None) | Minimum slider value. |
| SliderBackgroundColor | ColorGroup | (None) | Background color of the slider knob. |
| SliderBorderColor | ColorGroup | (None) | Border color of the slider knob. |
| SmallChange | Integer | (None) | Amount to increase/decrease value on small changes. |
| TrackBackgroundColor | ColorGroup | (None) | Background color of the slider track. |
| TrackBorderColor | ColorGroup | (None) | Border color of the slider track. |
| Type | GraffitiSlider.Types | (None) | The type of slider this is, Single or Ranged values. |
| ValueColor | ColorGroup | (None) | Color used to draw the value. |
| ValueHigh | Integer | (None) | The current high value (when Type = Types.Range). |
| ValueLow | Integer | (None) | The current low value (when Type = Types.Range). |