我想用我的Word加载项添加一个表,其中包含数据库中的数据。 我已经成功地做到了,但现在桌子的位置有问题。 我想将其准确放置在Word文档中的当前位置。 但是,它总是在开始时添加。 有谁知道如何调整起始值始终是当前位置的范围? 这是我的代码的一部分:
private void createTable_Click(object sender, EventArgs e) {
object start = 0, end = 0;
Word.Document document = Globals.ThisAddIn.Application.ActiveDocument;
Word.Range rng = document.Range(ref start, ref end);
// Insert a title for the table and paragraph marks.
rng.InsertBefore("List");
rng.Font.Name = "Verdana";
rng.Font.Size = 16;
rng.InsertParagraphAfter();
rng.InsertParagraphAfter();
rng.SetRange(rng.End, rng.End);
// Add the table.
rng.Tables.Add(document.Paragraphs[2].Range, 1, 7, ref missing, ref missing);
// Format the table and apply a style.
Word.Table tbl = document.Tables[1]; tbl.Range.Font.Size = 8;
tbl.Borders[WdBorderType.wdBorderLeft].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderRight].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderTop].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderBottom].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderHorizontal].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderVertical].LineStyle =
WdLineStyle.wdLineStyleSingle;
tbl.Borders[WdBorderType.wdBorderBottom].Color = WdColor.wdColorBlack; tbl.Rows.Alignment = WdRowAlignment.wdAlignRowCenter; tbl.AutoFitBehavior(WdAutoFitBehavior.wdAutoFitWindow);
答案 0 :(得分:0)
重读时...要插入当前位置-如果您的意思是光标所在的位置:
Word.Range rngSel = wdApp.Selection.Range;
rngSel.Tables.Add(//params here);
否则,如果您要在信息末尾插入代码,而不是这两行
rng.InsertBefore("List");
rng.Font.Name = "Verdana";
rng.Font.Size = 16;
rng.InsertParagraphAfter();
rng.InsertParagraphAfter();
rng.SetRange(rng.End, rng.End);
使用
rng.Text = "List\n\n"
rng.Font.Name = "Verdana";
rng.Font.Size = 16;
rng.Collapse(WdCollapseDirection.wdCollapseEnd);
\n
插入一个新段落(回车),并且可以将其作为字符串的一部分包含。
在我看来,直接将文本分配给Range
并使用Collapse
方法比各种Insert方法更具可预测性。一些Insert方法包括该范围中插入的内容,而其他方法则没有。
FWIW尚不清楚可能是什么问题,可以帮助在代码的关键点放置rng.Select();
并注释掉其余各行,以便代码以可见的范围结束。这通常可以提供有关范围问题的来源的信息。