Page 1 of 1

Remove border of table

Posted: Tue Oct 04, 2016 6:40 pm
by MaxChan
Anyone know how to remove all border of a table?
thank you very much!

Re: Remove border of table

Posted: Wed Oct 05, 2016 7:45 pm
by larsa
Hello

Add borders and set the style to None. Example:

Code: Select all

...Paras.Tables[0].TAPX.AddBorders;
...Paras.Tables[0].TAPX.BorderLeft.Style := stbNone;
...Paras.Tables[0].TAPX.BorderTop.Style := stbNone;
...Paras.Tables[0].TAPX.BorderRight.Style := stbNone;
...Paras.Tables[0].TAPX.BorderBottom.Style := stbNone;
...Paras.Tables[0].TAPX.BorderInsideHoriz.Style := stbNone;
...Paras.Tables[0].TAPX.BorderInsideVert.Style := stbNone;