如何以编程方式在Word Document中生成多个表

时间:2016-09-06 11:09:07

标签: c# office-interop

我正在尝试创建一个MS Word文档,其中包含几个位于彼此下方的表格。

以下代码会导致错误消息“收集的请求成员不存在”。我知道我在前一个表中插入了新表,我只是不知道如何在下面创建一个新表。

object myMissingValue = System.Reflection.Missing.Value;
Word._Application myApp = new Word.Application();
Word._Document myDocument = WordApplication.Documents.Add(ref myMissingValue, ref myMissingValue, ref myMissingValue, ref myMissingValue);
Word.Range myRange = myDocument.Range(ref myMissingValue, ref myMissingValue);

for (int i = 0; i < 5; i++)
{
    myDocument.Tables.Add(myRange, 2, 2, ref myMissingValue, ref myMissingValue);
    Word.Table myTable = WordDocument.Tables[i];
    myTable.Range.Borders.Enable = 1;
    myTable.Rows[1].Cells[1].Range.Text = "Table number " + Convert.ToString(i);
}

1 个答案:

答案 0 :(得分:1)

我找到了答案。我将Range设置为每个周期结束时文档内容的最后一个索引-1。

myRange = myDocument.Range(myDocument.Content.End - 1, ref myMissingValue);