home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / GETTXTS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  630 b   |  24 lines

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm   : integer;
  5.   OldStyle : TextSettingsType;
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   GetTextSettings(OldStyle);
  12.   OutTextXY(0, 0, 'Old text style');
  13.   SetTextJustify(LeftText, CenterText);
  14.   SetTextStyle(TriplexFont, VertDir, 4);
  15.   OutTextXY(GetMaxX div 2, GetMaxY div 2, 'New Style');
  16.   with OldStyle do
  17.   begin                        { restore old text style }
  18.     SetTextJustify(Horiz, Vert);
  19.     SetTextStyle(Font, Direction, CharSize);
  20.   end;
  21.   OutTextXY(0, TextHeight('H'), 'Old style again');
  22.   Readln;
  23.   CloseGraph;
  24. end.