StyleAreaWidth Property

Applies To

Window object.

Description

Returns or sets the width of the style area, in points. Read/write Single.

Note When the StyleAreaWidth property is greater than 0 (zero), style names are displayed to the left of the text. The style area isn't visible in page layout view or online layout view.

See Also

Options property, Window object.

Example

This example switches the active window to normal view and sets the width of the style area to 1 inch.

With ActiveWindow
    .View.Type = wdNormalView
    .StyleAreaWidth = InchesToPoints(1)
End With