Navigation: thinBasic Modules > Console > Console_PrintAt |
|
Description
Prints a text buffer at a specific x, y location with attribute.
Syntax
Console_PrintAt(sText, xPos, yPos [, lColor [, X_UpTo]])
Returns
Parameters
Name |
Type |
Optional |
Meaning |
sText |
Number |
No |
The text to print |
xPos |
Number |
No |
X start position of the progress bar |
yPos |
Number |
No |
Y start position of the progress bar |
lColor |
Number |
Yes |
Color to be used. |
X_UpTo |
Number |
Yes |
If present, printed text cannot exceed indicated X position. If printed text will not reach X position, remaining screen space will be filled with spaces. This parameter is useful when programmer needs to print in predefined console screen areas. |
Remarks
If lColor is omitted, last used lColor will be used instead.
Restrictions
Alias
This function can be aliases as: PRINTAT
See also
Console Module, Console_Write, Console_WriteLine
Examples
Console_PrintAt("Hello world!", 35, 12, %Console_FOREGROUND_BLUE)
© 2004-2008 thinBasic. All rights reserved. | Version 1.7.0.0 | Web Site: http://www.thinbasic.com |