/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TestSuite/CompilationSamples/GrFont2.pas
16 строк
419 B
Artem Pelenitsyn
change encoding for all *.pas and *.cs files: cp1251 -> utf-8
28 дек 2015, 14:25
28 дек 2015, 14:25
49378a6
Код
Авторство
О чём код?
// Демонстрация использования 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.