ArtWidth 属性

       

返回或设置指定艺术型边框的宽度(以磅为单位)。Long 类型,可读写。

示例

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

Dim borderLoop As Border

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