Show / Hide Table of Contents

    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 Source

    DownButton

    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.

    | Improve this Doc View Source

    Slider

    Gets the slider.

    Declaration
    ISlider Slider { get; }
    Property Value
    Type Description
    ISlider

    The slider.

    | Improve this Doc View Source

    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.

    | Improve this Doc View Source

    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.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX