Gets or sets the automatic scaling mode of the control.
Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public Property AutoScaleMode As AutoScaleMode
Dim instance As ContainerControl
Dim value As AutoScaleMode
value = instance.AutoScaleMode
instance.AutoScaleMode = value
[BrowsableAttribute(false)]
public AutoScaleMode AutoScaleMode { get; set; }
[BrowsableAttribute(false)]
public:
property AutoScaleMode AutoScaleMode {
AutoScaleMode get ();
void set (AutoScaleMode value);
}
public function get AutoScaleMode () : AutoScaleMode
public function set AutoScaleMode (value : AutoScaleMode)
The AutoScaleMode property specifies the current automatic scaling mode of this control. Scaling by Font is useful if you want to have a control or form stretch or shrink according to the size of the fonts in the operating system, and should be used when the absolute size of the control or form does not matter. Scaling by Dpi is useful when you want to size a control or form relative to the screen. For example, you may want to use dots per inch (DPI) scaling on a control displaying a chart or other graphic so that it always occupies a certain percentage of the screen.
For more information about automatic scaling, see Automatic Scaling in Windows Forms.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
.NET Compact Framework
Supported in: 3.5, 2.0
Reference