pascalabcnet/InstallerSamples/!Tutorial/04_Graphics/GrFont1.pas

24 lines
534 B
ObjectPascal
Raw Normal View History

// Демонстрация работы со шрифтами
2015-05-14 22:35:07 +03:00
uses GraphABC;
begin
Window.Title := 'Шрифты';
2015-05-14 22:35:07 +03:00
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.