Word 2007 中的目标页眉和页脚内容控件
我正在尝试通过 Word Automation 编辑 .docx 标头。如果内容控件放置在文本正文中,则没有问题,但如果内容控件位于页眉或页脚中,我将无法定位它们。有没有办法在页眉或页脚中定位内容控件(使用 Visual Studio 2008 Express)?
I'm trying to edit a .docx header through Word Automation. If the Content Controls are placed in the body of the text there is no problem, but if the content controls are in the header or footer I'm not able to target them. Is there any way of targetting Content Controls in the header or footer (using Visual Studio 2008 Express)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Word 在
StoryRange
集合 - 大多数例程在文档本身的主体上运行的
,除非您专门更改故事。wdMainTextStory
类型WdStoryType以下是访问标题中控件的方法:
Word has what are called Stories in the
StoryRange
collection - most routines run on the main body of the document itself of thewdMainTextStory
type ofWdStoryType
, unless you specifically change stories.Here's a way to get to your controls in the header:
使用 Word Automation 在标头中定位 ContentControl 的一种方法可以是:
Using Word Automation one way of targetting ContentControls in the header can be: