Pane.MinimumFontSize Property

Definition

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

public:
 property int MinimumFontSize { int get(); void set(int value); };
public int MinimumFontSize { get; set; }
member this.MinimumFontSize : int with get, set
Public Property MinimumFontSize As Integer

Property Value

Examples

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

<span class="label">With ActiveDocument.ActiveWindow 































































































































































































































































    .View.Type = wdWebView 































































































































































































































































    .ActivePane.</span>
<span class="label">MinimumFontSize</span>
<span class="label">= 12End With</span>

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

<span class="label">Msgbox _ 































































































































































































































































    ActiveDocument.ActiveWindow.ActivePane.</span>
<span class="label">MinimumFontSize</span>

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.

Applies to