使用C#的Word自动表格行问题

时间:2019-02-28 10:38:06

标签: c# .net ms-word word-automation

此错误的主要原因是什么

  

此集合中的任何行都无法解决,因为   表格包含垂直链接的单元格。 '

我有一个要在其中添加数据的表(存储在数组中),但是表的第二行被合并,并且出现了此错误消息。

什么是解决此错误的合适解决方案。

代码:

if (pCell.Range.Text.Contains("List of components robots"))
{   
    iDT16 = 0; rowcount = 0;
    foreach (int Row in wordDocument.Tables[j].ToString()) // Add row in the table according to data available inside Result array
    {
        while (sDesignation_Componentsrobots[iDT16] != null)
        {
            wordDocument.Tables[j].Rows.Add();
            wordDocument.Tables[j].Rows.SetHeight(28, Word.WdRowHeightRule.wdRowHeightAtLeast);
            rowcount = wordDocument.Tables[j].Rows.Count;
            iDT16++;
        }
    }

    // Fill the row with data and add checkbox in particular table column.
    iDT16 = 0;  iEST16 = 0;

    for (int row = 3; row <= rowcount; row++)
    {
        wTable.AllowAutoFit = true;
        wTable.Rows[row].Range.Font.Bold = 0;
        wTable.Rows[row].Range.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;
        wTable.Rows[row].Range.ParagraphFormat.SpaceBefore = 5;
        wTable.Cell(row, 1).Range.Text = sDesignation_Componentsrobots[iDT16];
        wTable.Cell(row, 3).Range.Text = sEmergency_stopcircuit_T16[iEST16];
        Word.FormField checkBox2 = wTable.Cell(row, 6).Range.FormFields.Add(wTable.Cell(row, 6).Range, Word.WdFieldType.wdFieldFormCheckBox);
        iDT16++; iEST16++;
    }

    break;
}

具有合并行的表:

Table with merged row

0 个答案:

没有答案