render
Description​
Initiates a re-rendering of the current setup. If rendering is not yet possible, it will be deferred until the UI changes to be ready for rendering.
Signatures​
function render()JavaScript |
alphaTab('render')jQuery |
void Render().net |
fun render(): UnitAndroid |
Parameters​
None
Returns​
Nothing
Examples​
- JavaScript
- jQuery
- C#
- Android
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.render();
$('#alphaTab').alphaTab('render');
var api = new AlphaTabApi<MyControl>(...);
api.Render();
val api = AlphaTabApi<MyControl>(...)
api.render()