1

我有一个任务需要合并超过 2 个单元格,使用下面的代码我只能合并 word 文档下表头中的 2 个单元格。

var tc = new TableCell();
Text header = new Text("");
if (j == 0)
{
    header = new Text("Header1");
    tc.Append(new TableCellProperties(
        new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "1620" },
        new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center }));
}
else if (j == 1)
{
    header = new Text("");
    tc.Append(new TableCellProperties(
        new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "0" }));
}
else if (j == 2)
{
    header = new Text("");
    tc.Append(new TableCellProperties(
       new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "0" }));
}
else if (j == 3)
{
    header = new Text("");
    tc.Append(new TableCellProperties(
       new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "0" }));
}
else if (j == 4)
{
    header = new Text("Header2");
    tc.Append(new TableCellProperties(
        new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "1076" },
        new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center }));
}
else if (j == 5)
{
    header = new Text("Header3");
    tc.Append(new TableCellProperties(
        new TableCellWidth() { Type = TableWidthUnitValues.Dxa, Width = "1004" },
        new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center }));
}

Run runHeaderRun = new Run(); 
runHeaderRun.Append(runHeader);
runHeaderRun.Append(header); 
paraHeader.Append(runHeaderRun);
tc.Append(paraHeader);

if (j == 0 || j == 2)
{
    tc.TableCellProperties = new TableCellProperties();
    tc.TableCellProperties.HorizontalMerge = new HorizontalMerge { Val = MergedCellValues.Restart };
}
else if (j == 1 || j == 3)
{
    tc.TableCellProperties = new TableCellProperties();
    tc.TableCellProperties.HorizontalMerge = new HorizontalMerge { Val = MergedCellValues.Continue };
}
headerRow.Append(tc);

table.Append(headerRow);

我得到这样的结果:
样本

但我需要这样:
样本

4

1 回答 1

0

虽然您发布的代码无法编译,但看起来问题出在此处:

if (j == 0 || j == 2)
{
    tc.TableCellProperties = new TableCellProperties();
    tc.TableCellProperties.HorizontalMerge = new HorizontalMerge { Val = MergedCellValues.Restart };
}
else if (j == 1 || j == 3)
{
    tc.TableCellProperties = new TableCellProperties();
    tc.TableCellProperties.HorizontalMerge = new HorizontalMerge { Val = MergedCellValues.Continue };
}

我假设这j是列的循环索引。您的代码说要在第 0 列开始新的水平合并并继续到第 1 列,然后在第 2 列重新开始合并并继续到第 3 列。这正是我们在您提供的输出图像中看到的。如果要合并所有四个单元格,则第一个单元格应该有MergedCellValues.Restart,其他三个应该有MergedCellValues.Continue

另外我注意到您正在创建一个全新TableCellProperties的设置HorizontalMerge,而不是将其添加到TableCellProperties您之前在代码中为这些相同的单元格创建的。这意味着您之前设置的属性TableCellVerticalAlignment,例如 ,对于这些单元格将丢失。

我认为如果您将上述代码部分更改为以下内容,它将解决这两个问题:

if (j < 4)
{
    var merge = j == 0 ? MergedCellValues.Restart : MergedCellValues.Continue;
    tc.TableCellProperties.HorizontalMerge = new HorizontalMerge { Val = merge };
}
于 2021-04-06T22:40:51.377 回答