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 | Optional | Type | Description |
|---|---|---|---|
| ID | Yes | string or variable | ID to identify the window or style it |
| CLASS | Yes | string or variable | CLASS to style the window |