
848 C++ Graphics
(12) setcolor();
This function sets the current drawing color and is declared as below.
void far setcolor (int color);
(13) outtextxy();
This function displays a string at the specified location (graphics mode) and is declared below.
void far outtextxy (int x, int y, char far *textstring);
(14) settextstyle();
This function sets the current text attributes and is declared below.
void far settextstyle(int font, int direction, int fontsize);
This functions has three integer arguments. The first argument indicates font; the second, direc-
tion; and the third, size of the font.
(15) settextjustify();
This function sets the text justification ...