Pane.MinimumFontSize property (Word)

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

Syntax

expression. MinimumFontSize

expression An expression that returns a 'Pane' object.

Remarks

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

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 ActiveDocument.ActiveWindow 
 .View.Type = wdWebView 
 .ActivePane.MinimumFontSize = 12 
End With

This example returns the minimum font size for the active pane.

Msgbox _ 
 ActiveDocument.ActiveWindow.ActivePane.MinimumFontSize

See also

Pane Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.