Good afternoon.
It is necessary to solve this question.
I fill in the runtime template that contains a table with a fixed set of rows and columns. So, I have to write a long text in a cell of a specific column with word-by rows. I specify: hyphenation should not be inside the cell, changing its height, and in the following lines.
That is, I need to pre-calculate the number of characters from my text for each table cell. Given the font and font settings. Something like GetTextExtentExPoint of API Win32.
The work is implemented on the basis of your example RvfEditor.
Thank you in advance for your reply.
Number of characters in a cell to wrap text
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Sergey Tkachenko wrote:May be you can set the paragraph "no wrap" option instead?
Я в runtime заполняю шаблон, содержащий таблицу с фиксированным набором строк и колонок. Так вот, мне надо записать длинный текст в ячейки определенного столбца с переносом слов по строкам. Уточняю: перенос слов должен быть не внутри ячейки, с изменением ее высоты, а в последующие строки.
Т.е. мне надо предварительно вычислить количество символов из моего текста для каждой ячейки таблицы. Учитывая шрифт и его параметры. Что-то наподобие GetTextExtentExPoint из API Win32
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
You can apply text style to Canvas:
Then you can use text measuring function of this canvas.
However, when printing, TRVPrint formats document in the printer resolution, so results may be different on the screen and on the printer.
Code: Select all
RVStyle.ApplyStyle(Canvas, StyleNo, rvbdUnspecified, False, True, nil, False, False);
However, when printing, TRVPrint formats document in the printer resolution, so results may be different on the screen and on the printer.