当前位置: 代码迷 >> VBA >> 怎么设置加粗生成表格的线条(C#)
  详细解决方案

怎么设置加粗生成表格的线条(C#)

热度:4016   发布时间:2013-02-26 00:00:00.0
如何设置加粗生成表格的线条(C#)?
请阅读该说明

http://community.csdn.net/Expert/TopicView.asp?id=5341307

谢谢

------解决方案--------------------------------------------------------
你要设置的是表格对象中的单元格的边框的宽度的属性。
tbl.??? 应该是:
tbl.Cell.Borders(wdBorderBottom).LineWidth = Word.WdLineWidth.wdLineWidth150pt;

tbl.Cell.Borders.LineWidth = Word.WdLineWidth.wdLineWidth150pt;
  相关解决方案