.NET Framework Class Library
ContainerControl.AutoScaleMode Property

Note: This property is new in the .NET Framework version 2.0.

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)
Public Property AutoScaleMode As AutoScaleMode
Visual Basic (Usage)
Dim instance As ContainerControl
Dim value As AutoScaleMode

value = instance.AutoScaleMode

instance.AutoScaleMode = value
C#
public AutoScaleMode AutoScaleMode { get; set; }
C++
public:
property AutoScaleMode AutoScaleMode {
    AutoScaleMode get ();
    void set (AutoScaleMode value);
}
J#
/** @property */
public AutoScaleMode get_AutoScaleMode ()

/** @property */
public void set_AutoScaleMode (AutoScaleMode value)
JScript
public function get AutoScaleMode () : AutoScaleMode

public function set AutoScaleMode (value : AutoScaleMode)

Property Value

An AutoScaleMode that represents the current scaling mode. The default is None.
Exceptions

Exception typeCondition

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 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0

.NET Compact Framework

Supported in: 2.0
See Also

Tags :


Page view tracker