Border.ArtStyle 属性 (Word)

返回或设置文档的图形页面边框设计。 读/写 WdPageBorderArt

语法

expression. ArtStyle

expression:必需。 表示“Border”对象的变量。

示例

本示例为选定内容的第一节的每个页面添加由黑点构成的边框。

Dim borderLoop As Border 
 
For Each borderLoop In Selection.Sections(1).Borders 
 With borderLoop 
 .ArtStyle = wdArtBasicBlackDots 
 .ArtWidth = 6 
 End With 
Next borderLoop

本示例为活动文档中的第一节的每个页面添加由特定图片所构成的边框。

Dim borderLoop As Border 
 
With ActiveDocument.Sections(1) 
 .Borders.AlwaysInFront = True 
 For Each borderLoop In .Borders 
 With borderLoop 
 .ArtStyle = wdArtPeople 
 .ArtWidth = 15 
 End With 
 Next borderLoop 
End With

另请参阅

Border 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。