我创建了Document类的实例
Microsoft.Office.Interop.Word.Document
如何将表格和文本插入文档中的特殊位置? 例如,在一个书签之后或之前
答案 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);
Set rangeStart = ActiveDocument.Bookmarks("YourFirstBookmark").Range
Set rangeEnd = ActiveDocument.Bookmarks("YourEndBookmark").Range
var range= Range(rangeStart.Start, rangeEnd.End)