PrintPreviewDialog.WindowState Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the form's window state.
public:
property System::Windows::Forms::FormWindowState WindowState { System::Windows::Forms::FormWindowState get(); void set(System::Windows::Forms::FormWindowState value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.FormWindowState WindowState { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.WindowState : System.Windows.Forms.FormWindowState with get, set
Public Property WindowState As FormWindowState
Property Value
A FormWindowState that represents the window state of the form. The default is Normal.
- Attributes
Exceptions
The value specified is outside the range of valid values.
Remarks
Before a form is displayed, the WindowState property is always set to FormWindowState.Normal, regardless of its initial setting. This is reflected in the Height, Left, Top, and Width property settings. If a form is hidden after it has been shown, these properties reflect the previous state until the form is shown again, regardless of any changes made to the WindowState property.