Skip to main content

renderStarted

since 0.9.4

This event is fired when the rendering of the whole music sheet is starting. All preparations are completed and the layout and render sequence is about to start.

readonly renderStarted: IEventEmitterOfT<boolean>;

Examples​

const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.renderStarted.on(() => {
updateProgressBar("Rendering");
});