home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program DrawAlternateText;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- const
- MaxWorldX : Float = 1000.0;
- MaxWorldY : Float = 1000.0;
- CharArray1 : array [0..25] of char = { Define an array of characters }
- ('A','B','C','D','E','F','G','H','I','J','K','L','M',
- 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
-
- var
- I : integer;
- CharHeight, CharWidth : Float;
-
- begin
- InitGraphic; { Initialize the graphics system }
-
- DefineWorld(1, 0, 0, MaxWorldX, MaxWorldY); { Define the world to draw in }
- SelectWorld(1);
- SelectWindow(1);
- DrawBorder;
-
- for I := 1 to 50 do { Print Random characters in center of screen }
- DrawTextW(Random(600) + 200, Random(600) + 200,
- Random(5), CharArray1[Random(26)]);
-
- DrawTextW(15, 50, 1, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'); { Type chars in corner }
- DrawTextW(15, 100, 1, 'abcdefghijklmnopqrstuvwxyz');
- DrawTextW(15, 150, 1, '1234567890-=\`~!@#$%^&*()_');
- DrawTextW(15, 200, 1, '[]{}:";,.<>/?+|');
-
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic; { Leave the graphics system }
- end. { DrawAlternateText }