Language:
Русский
English
{Setuchsz.PAS}
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
{Sample code for the SetUserCharSize procedure.}
{This program shows how to change the height and width of text:}
uses Graph;
var Driver, Mode: Integer;
begin
Driver := Detect;
InitGraph(Driver, Mode, '');
if GraphResult <> grOk then
Halt(1);
{ Showoff }
SetTextStyle(TriplexFont, HorizDir, 4);
OutText('Norm');
SetUserCharSize(1, 3, 1, 1);
OutText('Short ');
SetUserCharSize(3, 1, 1, 1);
OutText('Wide');
Readln;
CloseGraph;
end.