Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Form::MaximizedBounds Property

 

Gets and sets the size of the form when it is maximized.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

protected:
property Rectangle MaximizedBounds {
	Rectangle get();
	void set(Rectangle value);
}

Property Value

Type: System.Drawing::Rectangle

A Rectangle that represents the bounds of the form when it is maximized.

Exception Condition
ArgumentOutOfRangeException

The value of the Top property is greater than the height of the form.

-or-

The value of the Left property is greater than the width of the form.

Notes to Inheritors:

Classes that inherit from Form can override this method to provide new bounds for the form when it is maximized. The class sets this property internally when the form's Maximize button is clicked.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft