Screen.Fullscreen (gb.sdl.image)
Syntax
STATIC PROPERTY Fullscreen AS Boolean
Set the window to fullscreen or get the current state of the window.

This property is only usefull in window mode (with a window manager). It does nothing otherwise.

Example
' Set fullscreen
Screen.Fullscreen = TRUE

' Get current state
PRINT Screen.Fullscreen

True