将表格添加到Word文档中 ,包括表格样式设置

创建 Table 对象并设置其属性

在您将表格插入文档之前,必须创建 Table 对象并设置其属性。 要设置表格的属性,请创建TableProperties对象并为其提供值。 TableProperties 类提供许多面向表格的属性,例如Shading 、TableBorders 、TableCaption 、TableCellSpacing 、TableJustification 等等。 示例方法包括以下代码。

     Table table = new Table();

     TableProperties props = new TableProperties(
new TableBorders(
new TopBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new BottomBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new LeftBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new RightBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new InsideHorizontalBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new InsideVerticalBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
})); table.AppendChild<TableProperties>(props);

TableProperties 类的构造函数允许您指定任意数量的子元素(与 XElement 构造函数很像)。

本例中,代码创建TopBorder 、BottomBorder 、LeftBorder 、RightBorder 、InsideHorizontalBorder 和InsideVerticalBorder 子元素,各子元素分别描述表格一个的边框元素。 对于每个元素,代码在调用构造函数的过程中设置 Val 和 Size 属性。 大小的设置很简单,但是 Val 属性的设置则复杂一点:此特定对象的这个属性表示边框样式,您必须将其设置为枚举值。 为此,请创建 EnumValue 泛型类型的实例,将特定边框类型(Single )作为参数传递给构造函数。< >一旦代码已设置它需要设置的所有表格边框值,它将调用 AppendChild<T> 方法的表,指示泛型类型是 TableProperties— 即使用变量 属性 作为值追加 TableProperties 类的实例。

使用数据填充表

有了表格及其属性后,现在应该使用数据填充表格。示例过程首先循环访问您指定的字符串数组中的所有数据行,并为每个数据行创建一个新的 TableRow 实例。下面的代码省去了使用数据填充行的细节,但是演示了如何创建行并将行附加到表格中:

创建11行

     for (var i = ; i <=; i++)
{
var tr = new TableRow();
// Code removed here…
table.Append(tr);
}

对于每一列,代码创建一个新的 TableCell 对象,并使用数据填充,然后将其附加到行。下面的代码省去了使用数据填充每个单元格的细节,但是演示了如何创建列并将列附加到表格中:

创建11列

     for (var j = ; j <= ; j++)
{
var tc = new TableCell();
// Code removed here…
tr.Append(tc);
}

接下来,代码执行以下操作:

  • 新建一个包含字符串中的值的 Text 对象。

  • 将 Text 对象传递给新Run 对象的构造函数。

  • 将 Run 对象传递给Paragraph 对象的构造函数。

  • 将 Paragraph 对象传递给单元格的Append 方法。

换句话说,下面的代码将文本附加到新的 TableCell 对象。

  tc.Append(new Paragraph(new Run(new Text("数据")));

代码然后将新的 TableCellProperties 对象附加到单元格。 与见过的 TableProperties 对象一样,此 TableCellProperties 对象的构造函数可以接受您提供的任意数量的对象。在本例中,代码仅传递了一个新的TableCellWidth 对象,并将其Type 属性设置为Auto (以便表格自动调整每列的宽度)。

     // Assume you want columns that are automatically sized.
tc.Append(new TableCellProperties(
new TableCellWidth { Type = TableWidthUnitValues.Auto }));

完成

下面的代码最后会将表格附加到文档正文,然后保存该文档。

    doc.Body.Append(table);
doc.Save();

示例代码

     // Take the data from a two-dimensional array and build a table at the
// end of the supplied document.
public static void AddTable(string fileName, string[,] data)
{
using (var document = WordprocessingDocument.Open(fileName, true))
{ var doc = document.MainDocumentPart.Document; Table table = new Table(); TableProperties props = new TableProperties(
new TableBorders(
new TopBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new BottomBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new LeftBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new RightBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new InsideHorizontalBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
},
new InsideVerticalBorder
{
Val = new EnumValue<BorderValues>(BorderValues.Single),
Size =
})); table.AppendChild<TableProperties>(props); for (var i = ; i <= data.GetUpperBound(); i++)
{
var tr = new TableRow();
for (var j = ; j <= data.GetUpperBound(); j++)
{
var tc = new TableCell();
tc.Append(new Paragraph(new Run(new Text(data[i, j])))); // Assume you want columns that are automatically sized.
tc.Append(new TableCellProperties(
new TableCellWidth { Type = TableWidthUnitValues.Auto })); tr.Append(tc);
}
table.Append(tr);
}
doc.Body.Append(table);
doc.Save();
}
}
上一篇:java web(三):ServletContext、session、ServletConfig、request、response对象


下一篇:Python模块学习 ---- logging 日志记录