c# 动态添加表格,怎么设置一列的宽度

2024-12-21 21:58:37
推荐回答(3个)
回答1:

获取表格的属性,然后就可以设置,参考方法如下:


  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个列宽相加;

回答2:

设置你的header的Row里面的TableCell的宽度,如果没有那就添加Attributes.Add("width","值")

回答3:

你需要设置的是table中的类似ColumnWidth这样的属性,而不是用一个TableRow