pascalabcnet/TestSuite/CompilationSamples/GrFont1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

24 lines
500 B
ObjectPascal

// Äåìîíñòðàöèÿ ðàáîòû ñî øðèôòàìè
uses GraphABC;
begin
Window.Title := 'Øðèôòû';
SetWindowSize(760,460);
Font.Name := 'Arial';
Font.Style := fsBoldItalic;
for var i:=4 to 14 do
begin
Font.Size := 2*i;
Font.Color := clRandom;
TextOut(30,2*i*i-15,'PascalABC.NET');
end;
Font.Name := 'Times New Roman';
Font.Style := fsBoldUnderline;
for var i:=4 to 14 do
begin
Font.Size := 2*i;
Font.Color := clRandom;
TextOut(400,2*i*i-15,'PascalABC.NET');
end;
end.