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

17 lines
380 B
ObjectPascal

// Äåìîíñòðàöèÿ èñïîëüçîâàíèÿ TextWidth è TextHeight
uses GraphABC;
const s = 'Width & Height';
begin
Window.Title := 'Òåêñò ïî öåíòðó';
Window.IsFixedSize := True;
SetWindowSize(700,300);
Window.Center;
Font.Name := 'Times';
Font.Size := 50;
var tw := TextWidth(s);
var th := TextHeight(s);
TextOut((Window.Width-tw) div 2,(Window.Height-th) div 2,s);
end.