This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Prints a text string 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. See standard console color equates |
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
See also
Console Module, Console_Write, Console_WriteLine
Examples
Console_PrintAt("Hello world!", 35, 12, %Console_FOREGROUND_BLUE)