How can i make the table border and cells like a single line?

General TRichView support forum. Please post your questions here
Post Reply
Aeperd
Posts: 18
Joined: Thu Dec 26, 2024 1:30 pm

How can i make the table border and cells like a single line?

Post 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.
Sergey Tkachenko
Site Admin
Posts: 17761
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: How can i make the table border and cells like a single line?

Post by Sergey Tkachenko »

Table.CellBorderWidth := 1;
Table.CellHSpacing := -1;
Table.CellVSpacing := -1;
Table.BorderWidth := 0;
Aeperd
Posts: 18
Joined: Thu Dec 26, 2024 1:30 pm

Re: How can i make the table border and cells like a single line?

Post by Aeperd »

Thanks a lot sir
Post Reply