hl.dsp.window.fullscreen¶
- hl.dsp.window.fullscreen(spec=None)¶
Create a window fullscreen dispatcher.
Signature¶
hl.dsp.window.fullscreen(spec?: table): HL.Dispatcher
Parameters¶
- spectable, optional
Fullscreen options.
- modestring, optional
Accepted values are
fullscreen,maximized,0for fullscreen, and1for maximized. Defaults tofullscreen.- actionstring, optional
Accepted values are
toggle,set, andunset. Defaults totoggle.- window
HL.WindowSelector, optional Target window.
Returns¶
- dispatcher
HL.Dispatcher Dispatcher object returned by this function.
Examples¶
hl.dispatch(hl.dsp.window.fullscreen())
hl.dispatch(hl.dsp.window.fullscreen({ mode = "maximized", action = "set" }))