Interface IScrollbar
A scrollbar is a ISlider with 2 buttons (left + right or up + down depending on which SliderDirection is used) that can be clicked to modify the slider.
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IScrollbar
Properties
| Improve this Doc View SourceDownButton
The down button (if the slider is vertical), or right button (if the slider is horizontal).
Declaration
IButton DownButton { get; }
Property Value
Type | Description |
---|---|
IButton | Down button. |
Slider
Gets the slider.
Declaration
ISlider Slider { get; }
Property Value
Type | Description |
---|---|
ISlider | The slider. |
Step
Gets or sets the step- the amount to move the slider when clicking the buttons.
Declaration
float Step { get; set; }
Property Value
Type | Description |
---|---|
System.Single | The step. |
UpButton
The up button (if the slider is vertical), or left button (if the slider is horizontal).
Declaration
IButton UpButton { get; }
Property Value
Type | Description |
---|---|
IButton | Up button. |