将表格插入C#

时间:2016-06-20 12:28:50

标签: c# asp.net

我创建了Document类的实例

Microsoft.Office.Interop.Word.Document

如何将表格和文本插入文档中的特殊位置? 例如,在一个书签之后或之前

1 个答案:

答案 0 :(得分:2)

要在word doc中添加文字,您可以使用

Word.Range rng = this.Application.ActiveDocument.Range(0, 0);
 rng.Text = "New Text";
表格

 Word.Range tableLocation = this.Range(ref start, ref end);
 this.Tables.Add(tableLocation, 10, 11);

点击texttable的此链接。

Set rangeStart = ActiveDocument.Bookmarks("YourFirstBookmark").Range
Set rangeEnd = ActiveDocument.Bookmarks("YourEndBookmark").Range

var range= Range(rangeStart.Start, rangeEnd.End)