在Word中插入Excel对象

Posted kingline

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Word中插入Excel对象相关的知识,希望对你有一定的参考价值。

 1 using Word = NetOffice.WordApi;
 2 
 3 Word.Document doc = this._wordApplication.Documents.Add(@"C:UserslinmeichengDesktop新建文件夹 (3)Doc1.docx");
 4 
 5 Word.ContentControl contentControl = doc.ContentControls.Add();
 6 contentControl.Title = "测试";
 7 contentControl.Tag = "test";
 8 
 9 object type = @"Excel.Sheet";//插入的excel
10 contentControl.Range.InlineShapes.AddOLEObject(type);

 

以上是关于在Word中插入Excel对象的主要内容,如果未能解决你的问题,请参考以下文章

在Word中插入Excel对象

excel表格怎样插入到word

使用VBA将Excel指定单元格数据字符串或者图表对象插入到Word模板指定书签处

如何在word中插入excel文件?

请问怎么用word中的数据导入EXCEL?

在word文档中怎么插入已做好的电子表格?