|
GUI Display or Character Display |
| |
|
| Format |
'TEXTWDW'(col,ln,wth,ht[,wdw_id],[title$][,attrib$][,OPT=val$])
Where:
@(col,ln, Position / coordinates. Numeric expressions. Column and line
|
|
wth,ht) |
coordinates for top left corner, width in number of columns and height in number of lines. |
|
|
|
attrib$ |
Attribute string. Optional. If you include attributes, use a string of one or more mnemonics to define the defaults for the window. |
|
|
|
title$ |
Optional title. String expression/literal. |
|
|
|
val$ |
Valid OPT= values for defining windows in a graphics environment |
|
|
(ignored in text mode): |
|
|
* |
Creates a resizable window with automatic scrollbars. |
|
|
- |
Window has a Minimize button. |
|
|
c |
Window is a child of the current window. |
|
|
|
|
C |
Disables X close icon on title bar of window and eliminates the system control menu from the title bar. |
|
|
m |
Enables "maximize" box in top right corner of window (only for dialogue windows created with OPT="*"). |
|
|
S |
Window has Status line / Message Bar. |
|
|
x |
Disables X close icon on title bar of window and eliminates the system control menu from the title bar. |
|
|
X |
Enables X close icon on title bar of window and supports the system control menu on the title bar. |
|
|
Z |
Creates a resizable window. |
|
|
|
wdw_id |
Window's unique ID number (0 - 255). |
| |
|
| Description |
Use 'TEXTWDW' to create a text style text mode window under Windows. If you include a title, a box of the defined height and width will be drawn around the window and the title will be left-justified on the top line of the box. See also 'DIALOGUE' Define / Draw Dialogue Region and WINDOW' Define / Draw Window.
|
| |
|
| Example |
PRINT 'TEXTWDW'(10,10,50,10,"Title",OPT="*") |