Skip to main content

renderFinished

since 0.9.4

Description​

This event is fired when the rendering of the whole music sheet is finished. This event is fired when the rendering of the whole music sheet is finished from the render engine side. There might be still tasks open for the display component to visually display the rendered components when this event is notified (e.g. resizing of DOM elements are done).

Examples​

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