ArtWidth Property

Applies To

Border object.

Description

Returns or sets the width (in points) of the specified graphical page border. Read/write Long.

See Also

AlwaysInFront property, ArtStyle property, JoinBorders property, SurroundFooter property, SurroundHeader property.

Example

This example adds a 6-point dotted border around each page in the first section in the selection.

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