pause
Description​
Pauses the playback of the current song.
Signatures​
function pause()JavaScript |
alphaTab('pause')jQuery |
void Pause().net |
fun pause(): UnitAndroid |
Parameters​
None
Returns​
Nothing
Examples​
- JavaScript
- jQuery
- C#
- Android
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.pause();
$('#alphaTab').alphaTab('pause');
var api = new AlphaTabApi<MyControl>(...);
api.Pause();
val api = AlphaTabApi<MyControl>(...)
api.pause();