EnlargeFontsLessThan Property

Applies To

View object.

Description

Returns or sets the point size below which screen fonts are automatically scaled to the larger size. 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 toolbar and used for printing aren't changed.

See Also

Magnifier property, MinimumFontSize property, Percentage property.

Example

This example switches the active window to online layout view and enlarges the fonts that are smaller than 10 points.

With ActiveWindow.View
    .Type = wdOnlineView
    .EnlargeFontsLessThan = 10
End With
This example switches the active window to online layout view and increases the current setting of the Enlarge fonts less than option on the View tab in the Options dialog box by 2 points.

With ActiveWindow.View
    .Type = wdOnlineView
    .EnlargeFontsLessThan = .EnlargeFontsLessThan + 2
End With