如何设置加粗生成表格的线条(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;