获取表格的属性,然后就可以设置,参考方法如下:
Table newTable = WordDoc.Tables.Add(WordApp.Selection.Range, 10, 3, ref Nothing, ref Nothing);
//表格属性
newTable.Borders.OutsideLineStyle = WdLineStyle.wdLineStyleThickThinLargeGap;
newTable.Borders.InsideLineStyle = WdLineStyle.wdLineStyleSingle;
//列宽度
newTable.Columns[1].Width = 100f;
newTable.Columns[2].Width = 200f;
newTable.Columns[3].Width = 300f;
//总宽度
float TableWidth=3个列宽相加;
设置你的header的Row里面的TableCell的宽度,如果没有那就添加Attributes.Add("width","值")
你需要设置的是table中的类似ColumnWidth这样的属性,而不是用一个TableRow