container
containerJavaScriptContainer.netcontainerAndroidDescription​
The UI container that holds the whole alphaTab control. Gets the UI container that represents the element on which alphaTab was initialized. Note that this is not the raw instance, but a UI framework specific wrapper for alphaTab.
- JavaScript
 - C#
 - Kotlin
 
Examples​
- JavaScript
 - C#
 - Android
 
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
const container = api.container;
var api = new AlphaTabApi<MyControl>(...);
var container = api.Container;
val api = AlphaTabApi<MyControl>(...)
val container = api.container;