1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/$RESIZE.txt
2016-03-18 08:36:04 -03:00

21 lines
844 B
Plaintext

The '''$RESIZE''' metacommand determines if a program window can be resized by the user in '''QB64 GL''' only.
{{PageSyntax}}
::: '''$RESIZE:'''{ON|OFF|STRETCH|SMOOTH}
* $RESIZE:ON is used to allow the program window to be resized by a program user. Otherwise it cannot be changed.
* $RESIZE:OFF (default) is used when the program's window size cannot be changed by the user.
* $RESIZE:STRETCH the screen will be stretched to fit the new window size with a 1 to 1 ratio of width and height.
* $RESIZE:SMOOTH the screen will be stretched also, but with linear filtering applied to the pixels.
* '''QB64 GL''' programs only. Not available in QB64 SDL versions .954 and older.
''See also:''
* [[_RESIZE]], [[_RESIZE (function)]]
* [[_RESIZEWIDTH]], [[_RESIZEHEIGHT]] {{text|(functions return the requested dimensions)}}
{{PageNavigation}}