The following method of the Cartesian class draws text beginning at (x1, y1):
void Text (C_Point LL, String Words);
|
To draw the string "Hello, World" at (10, 30), call
C_Point Position = new C_Point (10, 30);
Canvas.Text (Position, "Hello, World");
|
Text Demo 1
|
|
|