WINDOWBODY
ID (optional), CLASS (optional)
Creates a window body on screen.
Example
PALETTE ,"screen"
BACKGROUND 0,0,0
COLOR 0,0,0
END PALETTE
SCREEN "screen"
WINDOW "Test", "window"
WINDOWBODY
PRINT "This is a window"
END WINDOWBODY
WINDOWFOOTER
PRINT "Window footer"
END WINDOWFOOTER
END WINDOW
END SCREEN
Output
Test
This is a window
Parameters
| Parameter | Type | Description |
|---|---|---|
| Optional | ||
| ID | integer/string | ID to identify the window |
| Optional | ||
| CLASS | integer/string | CLASS to style the window |