toggleCaptions()
toggleCaptions(newState?: boolean)
//This will toggle the captions panel visibility state
sambaFrame.toggleCaptions();
//This will show the captions panel, equivalent to sambaFrame.showCaptions();
sambaFrame.toggleCaptions(true);
//This will hide the captions panel, equivalent to sambaFrame.hideCaptions();
sambaFrame.toggleCaptions(false);Last updated