Script API - v1.26.30.28
    Preparing search index...

    Interface SliderOptionsBeta

    Options for configuring a slider component.

    interface SliderOptions {
        description?:
            | string
            | ObservableString
            | ObservableUIRawMessage
            | UIRawMessage;
        disabled?: boolean
        | ObservableBoolean;
        step?: number | ObservableNumber;
        visible?: boolean | ObservableBoolean;
    }
    Index

    Properties

    Descriptive text shown around the slider to provide additional context.

    disabled?: boolean | ObservableBoolean

    When true or bound to a true ObservableBoolean, the slider is shown but cannot be moved.

    step?: number | ObservableNumber

    The increment amount between each slider step. Defaults to 1 if not specified.

    visible?: boolean | ObservableBoolean

    When false or bound to a false ObservableBoolean, the slider is hidden.