mirror of
https://github.com/electron/electron.git
synced 2026-02-14 09:05:01 -05:00
1.1 KiB
1.1 KiB
Class: TouchBarSlider
Create a slider in the touch bar for native macOS applications
Process: Main
new TouchBarSlider(options)
optionsObjectlabelString (optional) - Label text.valueInteger (optional) - Selected value.minValueInteger (optional) - Minimum value.maxValueInteger (optional) - Maximum value.changeFunction (optional) - Function to call when the slider is changed.
Instance Properties
The following properties are available on instances of TouchBarSlider:
touchBarSlider.label
The slider's current text. Changing this value immediately updates the slider in the touch bar.
touchBarSlider.value
The slider's current value. Changing this value immediately updates the slider in the touch bar.
touchBarSlider.minValue
The slider's current minimum value. Changing this value immediately updates the slider in the touch bar.
touchBarSlider.maxValue
The slider's current maximum value. Changing this value immediately updates the slider in the touch bar.