PrinterSettings.MaximumPage Property

Definition

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

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

Property Value

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

Exceptions

The value of the MaximumPage 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