playbackSpeed
Description​
The current playback speed as percentage Controls the current playback speed as percentual value. Normal speed is 1.0 (100%) and 0.5 would be 50%.
- JavaScript
 - C#
 - Kotlin
 
playbackSpeed: number = 1;double PlaybackSpeed { get; set; } = 1var playbackSpeed: Double = 1Examples​
- JavaScript
 - C#
 - Android
 
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.playbackSpeed = 0.5;
var api = new AlphaTabApi<MyControl>(...);
api.PlaybackSpeed = 0.5;
val api = AlphaTabApi<MyControl>(...)
api.playbackSpeed = 0.5