Skip to main content

renderFinished

since 0.9.4

Description​

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.

renderFinishedJavaScript
alphaTab.renderFinishedjQuery
alphaTab.renderFinishedHTML
RenderFinished.net

Types​

function()JavaScript
Action.net

Parameters​

None

Examples​

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