NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form.MaximizedBounds

Gets the size of the form when it is maximized.

[Visual Basic]
Overridable Protected Property MaximizedBounds As Rectangle
[C#]
protected Rectangle MaximizedBounds {virtual get; virtual set;}
[C++]
protected: __property virtual Rectangle get_MaximizedBounds();
protected: __property virtual void set_MaximizedBounds(Rectangle);
[JScript]
protected function get MaximizedBounds() : Rectangle;
protected function set MaximizedBounds(Rectangle);

Property Value

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

Remarks

Notes to Inheritors: Classes that inherit from Form can override this method to provide a new bounds for the form when it is maximized. This property is set internally by the class when the form's maximize button is pressed.

See Also

Form Class | Form Members | System.WinForms Namespace | MaxTrackSize | MinTrackSize