我是靠谱客的博主 可耐月饼,最近开发中收集的这篇文章主要介绍matlab打开word里的图片,Matlab往Word里面插入图片范例代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

function ceshi_Word

%设定测试Word文件名和路径

filespec_user=[pwd '测试.doc'];

%判断Word是否已经打开,若已打开,就在打开的Word中进行操作,

%否则就打开Word

try

Word = actxGetRunningServer('Word.Application');

catch

Word = actxserver('Word.Application');

end;

%设置Word属性为可见

set(Word, 'Visible', 1);

%返回Word文件句柄

documents = Word.Documents;

%若测试文件存在,打开该测试文件,否则,新建一个文件,并保存,文件名为测试.doc if exist(filespec_user,'file');

document = invoke(documents,'Open',filespec_user);

else

document = invoke(documents, 'Add');

document.SaveAs(filespec_user);

end

content = document.Content;

selection = Word.Selection;

paragraphformat = selection.ParagraphFormat;

%页面设置(上下左右边距

最后

以上就是可耐月饼为你收集整理的matlab打开word里的图片,Matlab往Word里面插入图片范例代码的全部内容,希望文章能够帮你解决matlab打开word里的图片,Matlab往Word里面插入图片范例代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部