回复 5楼好难注册的帖子
你的意思是想保留Cell但是不想画cell之间的线?
那么可以使用:
TXTextControl.TableCellAttribute方法,里面的Attribute的类型可以传递参数为:txTableCellBottomBorderWidth。[Value】设置为0.
语法:TXTextControl.TableCellAttribute(TableId, Row, Column, Attribute) [= value]
根据你的需求,需要将每个Cell的下边框宽度设置为0.
使用这个方法需要注意的是:它只对Border起作用,对Table的Gridline是无效的。若是你的Table上画的有Gridline,TableGridLines设置为False,然后每个cell画border,再用这个方法将你的Border下线设置为0. |