Gets or sets the size that is the lower limit that
System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size) can specify.
Syntax
Visual Basic (Declaration) | |
---|
<SRDescriptionAttribute("Specifies the minimum size of the control.")>
<SRCategoryAttribute("Layout")>
Public Overridable Property MinimumSize As Size |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Medical3DControl
Dim value As Size
instance.MinimumSize = value
value = instance.MinimumSize |
C# | |
---|
[SRDescriptionAttribute("Specifies the minimum size of the control.")]
[SRCategoryAttribute("Layout")]
public virtual Size MinimumSize {get; set;} |
C++/CLI | |
---|
[SRDescriptionAttribute("Specifies the minimum size of the control.")]
[SRCategoryAttribute("Layout")]
public:
virtual property Size MinimumSize {
Size get();
void set ( Size value);
} |
Property Value
An ordered pair of type
System.Drawing.Size representing the width and height of a rectangle.
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also