将表(行)与OpenXML SDK 2.5保持在一起

时间:2014-07-28 13:07:52

标签: c# .net-4.5 openxml openxml-sdk wordprocessingml

我想生成多个表,每个表在word文档中各有2行。但是我希望将这两行保持在一起(如果可能的话)。

    第一行的
  1. new KeepNext()不起作用
  2. new KeepNext()在第一行的最后一段不起作用
  3. new CantSplit()在桌面上不起作用
  4. 在所有情况下,第二行(如果太大)落在第二页上。最后一个单元格(具有大内容的单元格)上的new CantSplit()避免了单元格的中断。但是没有一个选项可以避免分割表(行方向)。

2 个答案:

答案 0 :(得分:4)

您需要将KeepNext添加到每个行以将它们保持在一起。 document.xml中的XML输出应该类似于:

enter image description here

此代码成功创建了一个包含2行的表格,这些行将跨页面保持在一起:

Table table = wordDoc.MainDocumentPart.Document.Body.AppendChild(new Table());

TableRow row1 = table.AppendChild(new TableRow());
TableCell cell1 = row1.AppendChild(new TableCell());
Paragraph para1 = cell1.AppendChild(new Paragraph());
PreviousParagraphProperties prop1 = para1.AppendChild(new PreviousParagraphProperties());
KeepNext k = prop1.AppendChild(new KeepNext());
Run run1 = para1.AppendChild(new Run());
run1.AppendChild(new Text("This is some long text"));

TableRow row2 = table.AppendChild(new TableRow());
TableCell cell2 = row2.AppendChild(new TableCell());
Paragraph para2 = cell2.AppendChild(new Paragraph());
PreviousParagraphProperties prop2 = para1.AppendChild(new PreviousParagraphProperties());
KeepNext k2 = prop2.AppendChild(new KeepNext());
Run run2 = para2.AppendChild(new Run());
run2.AppendChild(new Text("This is some even longer text"));

答案 1 :(得分:0)

i did it like this when I had to apply this to all tables:

private static void AlterTableType(List<Table> t)
    {
        foreach (Table table in t)
        {
            foreach (TableRow row in table.Descendants<TableRow>())
            {
                TableRowProperties trP = new TableRowProperties();
                CantSplit split = new CantSplit();
                trP.Append(split);
                row.AppendChild(trP);
            }
        }
    }

获取所有表格

var t = package.MainDocumentPart.Document.Body.Descendants<Table>().ToList()