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.
- JavaScript
- C#
- Kotlin
render(): void
void Render()
fun render(): Unit
Examples​
- JavaScript
- C#
- Android
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.render();
var api = new AlphaTabApi<MyControl>(...);
api.Render();
val api = AlphaTabApi<MyControl>(...)
api.render()