Page 1 of 1

Adding column width in percentage

Posted: Wed Sep 25, 2019 1:04 pm
by MaxP
Hi!

Is there a way to set the column width in percentage?

I have 3 columns in the table, I want to set 60% with for 1st, 20% for 2nd column, 20% for 3rd column.

Thanks.

Re: Adding column width in percentage

Posted: Sun Sep 29, 2019 8:01 pm
by smithclarkson01
In TRichView/ScaleRichView, like in HTML, widths of columns are calculated by widths of its cells.
To assign widths in percentage, use negative values of Cell.BestWidth:
CODE: SELECT ALL

table.Cells[0, 0].BestWidth := -60;
table.Cells[0, 1].BestWidth := -20;
table.Cells[0, 2].BestWidth := -30;
Defining widths of one cell in each column is enough. But the user may edit this document and delete a row containing these cells, so it's better to assign the same BestWidth to all cells in the given column.

In RichViewActions, there is a table properties dialog where users can define widths of the selected table cells.

If you define width of all (actually, even of one) column in percentage, the table will occupy the full page size (as if its width = 100%).
You can define the proper table width by assigning table.BestWidth (in percentage, or in pixels/twips).