Word) (Document.StoryRanges 属性
返回一个 StoryRanges 集合,代表指定文档中的所有内容。 此为只读属性。
语法
expression。 StoryRanges
表达 一个代表 Document 对象的变量。
备注
有关返回集合的单个成员的信息,请参阅 从集合中返回对象。
示例
本示例将遍历 StoryRanges 集合以确定 wdPrimaryFooterStory 是否 StoryRanges 集合的一部分。
For Each aStory In ActiveDocument.StoryRanges
If aStory.StoryType = wdEvenPagesFooterStory Then
MsgBox "Document includes an even page footer"
End If
Next aStory
本示例将文字添至文档页眉部分,然后显示该文字。
ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range _
.Text = "Header text"
MsgBox ActiveDocument.StoryRanges(wdPrimaryHeaderStory).Text
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。