word文件中删除所有分节符

word文件中删除所有分节符

本文介绍了如何从word文件中删除所有分节符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我想从我的word文件中删除所有分节符,我正在使用此代码,但它只删除分页符,而不是分节符号 app.ActiveWindow.Selection.Find.Execute(^ m,false,false,ref o,ref o,ref o,true,ref findWrap,true,,ref replace,ref o ,ref o,ref o,ref o); 请帮帮我... 解决方案 请通过此链接 http://stackoverflow.com/questions/13955478/word-2007-remove-section-break [ ^ ] I want to remove all the Section Breaks from my word file, i'm using this code, but it removes only page breaks, not Section Breaks app.ActiveWindow.Selection.Find.Execute("^m", false, false, ref o, ref o, ref o, true, ref findWrap, true, "", ref replace, ref o, ref o, ref o, ref o);please help me with this... 解决方案 please go through this linkhttp://stackoverflow.com/questions/13955478/word-2007-remove-section-break[^] 这篇关于如何从word文件中删除所有分节符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-28 08:02