.NET Framework Class Library
ContainerControl..::.AutoScaleMode Property

Gets or sets the automatic scaling mode of the control.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Syntax

Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public Property AutoScaleMode As AutoScaleMode
Visual Basic (Usage)
Dim instance As ContainerControl
Dim value As AutoScaleMode

value = instance.AutoScaleMode

instance.AutoScaleMode = value
C#
[BrowsableAttribute(false)]
public AutoScaleMode AutoScaleMode { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
property AutoScaleMode AutoScaleMode {
    AutoScaleMode get ();
    void set (AutoScaleMode value);
}
JScript
public function get AutoScaleMode () : AutoScaleMode
public function set AutoScaleMode (value : AutoScaleMode)

Property Value

Type: System.Windows.Forms..::.AutoScaleMode
An AutoScaleMode that represents the current scaling mode. The default is None.
Exceptions

ExceptionCondition
InvalidEnumArgumentException

An AutoScaleMode value that is not valid was used to set this property.

Remarks

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.

Platforms

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.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0

.NET Compact Framework

Supported in: 3.5, 2.0
See Also

Reference

Tags :


Page view tracker