1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/_DEST_(function).txt
2019-04-14 22:15:33 -03:00

23 lines
792 B
Plaintext

{{DISPLAYTITLE:_DEST (function)}}
The [[_DEST]] function returns the handle value of the current write page (the image used for drawing).
{{PageSyntax}}
:{{Parameter|result&}} = [[_DEST]]
{{PageDescription}}
* The current write page is where all drawing occurs by default.
* The value returned is the same as the latest [[SCREEN]]'s handle when creating custom screen modes using [[_NEWIMAGE]].
* Keep the _NEWIMAGE handle values when you move to another SCREEN mode so that you can return to that screen later. You can go to another screen mode and return without having to redo the screen.
* [[_DEST]] return values do not change in legacy screen modes. The value will not help restore them.
{{PageSeeAlso}}
* [[_DEST]]
* [[_SOURCE (function)]]
* [[SCREEN]]
{{PageNavigation}}