pascalabcnet/TestSuite/pabcrtl_tests/GrFont1.pas

24 lines
534 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Демонстрация работы со шрифтами
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.