Borders.SurroundFooter 属性 (Word)
如此 如果页面边框环绕文档的页脚。 读/写 Boolean。
语法
expression。 SurroundFooter
表达 返回“Borders”集合对象的表达式。
示例
本示例设置活动文档中第一节的页面边框格式,使页面边框环绕该节中每个页面的页眉和页脚。
With ActiveDocument.Sections(1).Borders
.SurroundFooter = True
.SurroundHeader = True
End With
本示例为第一节中的每一页添加艺术型页面边框。 该页面边框不环绕页眉和页脚。
With ActiveDocument.Sections(1)
.Borders.SurroundFooter = False
.Borders.SurroundHeader = False
For Each aBord In .Borders
aBord.ArtStyle = wdArtPeople
aBord.ArtWidth = 15
Next aBord
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。