Introduction

Language Structure

IB Statements

File System

Comet 32 Runtime

Index

(Redraw Notify)

Mnemonic: (Redraw Notify=state)
Discussion: This mnemonic generates a "REDRAW" event (an EventSub event), which tells the program that the size of the window has changed (maximize/restore/font size change) so that it can be redrawn if required for example, if GDI features have been employed on the screen).

The state parameter may contain the following values:

1 = enable
2 = disable

History: This mnemonic was added in REL Version 02.04.
Example:
Print (Redraw Notify=1)      ! enable redraw notify
.
.
.
EventSub EventHandler, A$, B$
Wait
.
.
.
EventHandler:

IF A$ = "REDRAW" THEN ...    ! size of window has changed

EventSub EventHandler, A$, B$
Return