home *** CD-ROM | disk | FTP | other *** search
- {$A+,B-,D-,E-,F-,G-,I-,L-,N-,O-,P-,Q-,R-,S-,T-,V-,X-}
- {$M 16384,0,655360}
-
- (*===================================================================*)
- (* DISPFONT.PAS *)
- (* Copyright (C) 1993 te-wi Verlag, München *)
- (*===================================================================*)
-
- PROGRAM DisplayFontAttrs;
-
- USES
- Crt, Graph, GraphErg;
-
- VAR
- gd, gm,
- i, x, y : INTEGER;
- s : STRING;
-
- BEGIN
- gd := InstallUserDriver('SVGA', NIL);
- gm := 0;
- InitGraph(gd, gm, '');
- SetBkColor(blue);
- SetTextStyle(TriplexFont, HorizDir, 5);
- SetTextJustify(CenterText, BottomText);
- SetFillStyle(SolidFill, Red);
- y := GetMaxY DIV 7;
- s := 'Schrift-Attribut-Demonstration';
- x := GetMaxX DIV 2;
- FOR i := 0 TO 6 DO
- BEGIN
- FontAttr := tFontAttr(i);
- OutTextXY(x, y * i + y, s);
- END;
- ReadLn;
- CloseGraph;
- END.
-
- (*===================================================================*)