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

Gets the minimum size the form can be resized to.

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

Property Value

A Size that represents the minimum size for the form.

Remarks

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

See Also

Form Class | Form Members | System.WinForms Namespace