MinimumFontSize 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 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