Page 1 of 1
How can i make the table border and cells like a single line?
Posted: Fri Dec 27, 2024 4:24 pm
by Aeperd
I tried to set the table and cells borderwidth to 1 but unfortunately still looks wide and have space in between, i want to set it as plainly single lines on the borders of table and cells. just like the border here in the text editor box.
Re: How can i make the table border and cells like a single line?
Posted: Fri Dec 27, 2024 6:44 pm
by Sergey Tkachenko
Table.CellBorderWidth := 1;
Table.CellHSpacing := -1;
Table.CellVSpacing := -1;
Table.BorderWidth := 0;
Re: How can i make the table border and cells like a single line?
Posted: Sun Dec 29, 2024 3:41 pm
by Aeperd
Thanks a lot sir