This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
OldPascalProjects/Graphics/GraphWPF/TextOutFontWith.pas
2024-03-10 20:32:51 +03:00

9 lines
353 B
ObjectPascal

uses GraphWPF;
begin
Window.Title := 'Использование FontOptions';
TextOut(10,10,'Обычный');
TextOut(10,40,'Жирный',Font.WithStyle(FontStyle.Bold));
TextOut(10,70,'20 пунктов',Font.WithSize(20));
TextOut(10,110,'Наклонный синий',Font.WithColor(Colors.Blue).WithStyle((FontStyle.Italic)));
end.