PrinterSettings.MinimumPage Property

Definition

Gets or sets the minimum FromPage or ToPage that can be selected in a PrintDialog.

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

Property Value

The minimum FromPage or ToPage that can be selected in a PrintDialog.

Exceptions

The value of the MinimumPage property is less than zero.

Remarks

The FromPage and ToPage properties are used by the PrintDialog when the user selects a print range. The PrintDialog.AllowSomePages property must be set to true to enable the user to specify a print range. When setting the FromPage or ToPage values programmatically, ensure that they are within the range defined by the MinimumPage and MaximumPage properties, or an exception is thrown when displaying the PrintDialog.

Applies to

See also