2

我有一个 docx 文件中有一行的表,我想添加一些行。对于第一个现有行,我将 GridSpan 设置为 3。在下一个中,我只想添加一个包含两个单元格的行,然后我得到如图所示的结果。如何将新行宽固定为表格宽度?当我在新行中只添加一个单元格时,我也想做同样的事情。

在此处输入图像描述

我的代码:

private static TableRow AddRow(WordprocessingDocument docx, Table tbl, int cellsQuantity)
        {
            TableRow newRow = new TableRow();

            var firstCell = tbl.Descendants<TableRow>().First()
                  .Descendants<TableCell>().First();

            firstCell.Append(new TableCellProperties(new GridSpan() { Val = 3 }));

            for (int i = 0, max = cellsQuantity; i < max; i++)
            {
                // TableCellProperties tcp = new TableCellProperties(new TableCellWidth() { Width = firstCell.TableCellProperties.TableCellWidth.Width, Type = firstCell.TableCellProperties.TableCellWidth.Type });
                TableCell cell = new TableCell(new Paragraph(new Run(new Text("test"))));
                newRow.AppendChild(cell);
            }

            tbl.Append(newRow);

            return newRow;
        }
4

2 回答 2

3

好的,我明白了:)

 private static TableRow AddRow(WordprocessingDocument docx, Table tbl, int cellsQuantity)
        {
            TableRow newRow = new TableRow();

            var grid = tbl.Descendants<TableGrid>().First();

            var firstCell = tbl.Descendants<TableRow>().First()
                  .Descendants<TableCell>().First();

            firstCell.Append(new TableCellProperties(new GridSpan() { Val = 4 }));

            int ind = 0;
            int[] widthPerColumn = new int[] { 3070, 1536, 1535, 3071 };
            grid.Descendants<GridColumn>().ToList().ForEach(x =>
            {
                x.Width = widthPerColumn[ind++].ToString();
            });

            int[] gridSpan = null;
            switch (cellsQuantity)
            {
                case 4:
                    gridSpan = new int[] { 1, 1, 1, 1 };
                    break;
                case 3:
                    gridSpan = new int[] { 1, 2, 1 };
                    break;
                case 2:
                    gridSpan = new int[] { 2, 2 };
                    break;
                case 1:
                    gridSpan = new int[] { 4 };
                    break;
                default:
                    throw new InvalidOperationException("The cellsQuantity variable must have a value from [1,4] range");
            }

            for (int i = 0, max = cellsQuantity; i < max; i++)
            {
                TableCellProperties tcp = new TableCellProperties(new GridSpan() { Val = gridSpan[i] });
                TableCell cell = new TableCell(tcp, new Paragraph(new Run(new Text("test"))));
                newRow.AppendChild(cell);
            }

            tbl.Append(newRow);

            return newRow;
        }
于 2012-06-25T10:38:26.593 回答
0
TableCell tCell = new TableCell();

tCell.Append(new TableCellProperties(
    new GridSpan { Val = table.LastChild.ChildElements.Count },
    new Justification { Val = JustificationValues.Right })
);
于 2014-10-07T13:23:46.623 回答