MinimumFontSize Property

Applies To

Pane object.

Description

Returns or sets the minimum font size (in points) displayed for the specified pane. Read/write Long.

Note This property only affects the text as shown in online layout view. The point sizes that are displayed on the Formatting command bar and used for printing aren't changed.

See Also

EnlargeFontsLessThan property.

Example

This example sets the active window to online view and then sets the minimum font size for the active pane to 12 points.

With ActiveWindow
    .View.Type = wdOnlineView
    .ActivePane.MinimumFontSize = 12
End With
This example returns the minimum font size for the active pane.

Msgbox ActiveWindow.ActivePane.MinimumFontSize