Borders.EnableOtherPagesInSection 属性 (Word)
如此 如果启用页面边框部分中除首页之外的所有页面。 读/写 Boolean。
语法
expression。 EnableOtherPagesInSection
表达 一个代表“Borders”对象的变量。
示例
本示例为选定内容的第一节除首页外的所有页面添加边框。
Dim borderLoop As Border
With Selection.Sections(1)
.Borders.EnableFirstPageInSection = False
.Borders.EnableOtherPagesInSection = True
For Each borderLoop In .Borders
borderLoop.ArtStyle = wdArtBabyRattle
borderLoop.ArtWidth = 22
Next borderLoop
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。