Anyone know how to remove all border of a table?
thank you very much!
Remove border of table
Re: Remove border of table
Hello
Add borders and set the style to None. Example:
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;
Lars Arvidsson, Axolot Data