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.MaxTrackSize

Gets the maximum size the form can be resized to.

[Visual Basic]
Overridable Protected Property MaxTrackSize As Size
[C#]
protected Size MaxTrackSize {virtual get; virtual set;}
[C++]
protected: __property virtual Size get_MaxTrackSize();
protected: __property virtual void set_MaxTrackSize(Size);
[JScript]
protected function get MaxTrackSize() : Size;
protected function set MaxTrackSize(Size);

Property Value

A Size that represents the maximum size for the form.

Remarks

Notes to Inheritors: Classes that inherit from Form can override this method to provide a new maximum size for the form. This propert is set internally by the class when the form is being resized.

See Also

Form Class | Form Members | System.WinForms Namespace | System.WinForms.MaximizedBounds | System.WinForms.MinTrackSize | MaxWindowTrackSize