Window |
Description | This unit contains the predefined subprograms that handle windows. There are routines to open, close, hide, show and select windows. All routines in the Window unit are exported qualified (and thus must be prefaced with "Window.").
| ||||||||||||||||||||||||||||||||||||
Details | The predefined subprograms of the Window module all use
window identifiers to indicate which window to act upon. The
default Run window can be specified by using defWindID.
For example, the following code causes the main Run window to
appear and then blink on and off three times.
% Output some data to make the Run window appear. put "Hello, World!" for i : 1 .. 3 delay (1000) Window.Hide (defWinID) delay (1000) Window.Show (defWinID) end for put "How are you?" | ||||||||||||||||||||||||||||||||||||
Entry Points |
|