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

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.   ViewPort : ViewPortType;
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   GetViewSettings(ViewPort);
  12.   with ViewPort do
  13.   begin
  14.     Rectangle(0, 0, x2-x1, y2-y1);
  15.     if Clip then
  16.       OutText('Clipping is active.')
  17.     else
  18.       OutText('No clipping today.');
  19.   end;
  20.   Readln;
  21.   CloseGraph;
  22. end.
  23.