<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > Canvas Control > Canvas Control Commands > Canvas_Window |
Description
Create a new canvas window.
Syntax
hWin = Canvas_Window( sCaption, x, y, nWidth, nHeight )
Returns
Number: the handle of the created window.
If the window could not be created, hWin will be 0.
Parameters
Name |
Type |
Optional |
Meaning |
sCaption |
String |
No |
The text to be displayed in the title or caption bar of the canvas window. If sCaption is empty (zero-length), the window is displayed without a title bar, so the appearance is different and the window cannot be dragged by the user. |
x |
Number |
No |
The location of the window, in pixels, relative to the upper left corner of the screen. |
y |
Number |
No |
The location of the window, in pixels, relative to the upper left corner of the screen. |
nWidth |
Number |
No |
The width of the client area of the window, not including the frame. The width is specified in pixels. |
nHeight |
Number |
No |
The height of the client area of the window, not including the frame. The height is specified in pixels. |
Remarks
Restrictions
See also
Examples