欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

excel文档中嵌入对象(excel、word等)

程序员文章站 2022-03-13 13:57:46
//测试环境office2016、office365 string InsertPath= @"E:\\新建文件夹\\2.xls";//插入的文档路径 string openfile = string.Empty; excelFileName = @"E:\\1.xls";//使用的文档路径 App ......

//测试环境office2016、office365

string insertpath= @"e:\\新建文件夹\\2.xls";//插入的文档路径

string openfile = string.empty;
excelfilename = @"e:\\1.xls";//使用的文档路径

application app = new application();//创建一个资源对象
//app.visible = true;
workbook wb = app.workbooks.open(filename: openfile );//打excel文档
worksheet sht = wb.worksheets[1];//选择第一个活动工作目录

oleobjects objs = sht.oleobjects();//创建一个oleobjects对象
for (int i = objs.count; i >= 1; i--)
objs.item(i).delete();

range rng = null;
rng = sht.cells[1, 5];//插入的位置 第1:行 第5:列
rng.select();

//将文档插入
oleobject obj = objs.add(filename: insertpath
, link: false
, displayasicon: true
, iconfilename: "excel.exe"
, iconindex: 0
, iconlabel: "aaa"
, left: rng.left
, top: rng.top
);
obj.select();
rng.select();
wb.save();
wb.close();