Язык:
Русский
English
{ Пример программы для процедуры GraphDefaults }
uses Crt, Graph;
var
Gd, Gm : Integer;
begin
Gd := Detect;
InitGraph(Gd, Gm, 'X:\BP');
if GraphResult <> grOk then
Halt(1);
SetColor(1);
OutText('This text is in color #1');
ReadLn;
{ Начнём сначала... }
ClearViewPort; { Все стираем }
GraphDefaults; { Установки по умолчанию }
OutText('This text is the default color');
ReadLn;
CloseGraph;
end.
var
Gd, Gm : Integer;
begin
Gd := Detect;
InitGraph(Gd, Gm, 'X:\BP');
if GraphResult <> grOk then
Halt(1);
SetColor(1);
OutText('This text is in color #1');
ReadLn;
{ Начнём сначала... }
ClearViewPort; { Все стираем }
GraphDefaults; { Установки по умолчанию }
OutText('This text is the default color');
ReadLn;
CloseGraph;
end.