在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对象的主要内容,如果未能解决你的问题,请参考以下文章