Console_PrintAt

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > Console >

Console_PrintAt

 

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

 

PrintAt

 

See also

 

Console Module, Console_Write, Console_WriteLine

 

Examples

 

Console_PrintAt("Hello world!", 35, 12, %Console_FOREGROUND_BLUE)