Console_PrintAt_Buffer

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > Console >

Console_PrintAt_Buffer

 

Description

 

Prints a text string at a specific x, y location with attribute directly into an allocated console buffer screen.

 

Syntax

 

Console_PrintAt_Buffer(sText, xPos, yPos, lColor, hConsole)

 

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

No

Color to be used.

hConsole

Number

No

A handle to the console screen buffer.

hConsole is the handle returned by Console_CreateScreenBuffer

 

Remarks

 

This function is useful when developing console applications using double buffer method in order to avoid flickering

 

Restrictions

 

Alias

 

See also

 

Console_CreateScreenBuffer, Console_SetActiveScreenBuffer

 

Examples