Gets or sets a value indicating whether the form will adjust its size to fit the height of the font used on the form and scale its controls.
[Visual Basic] Public Property AutoScale As Boolean [C#] public bool AutoScale {get; set;} [C++] public: __property bool get_AutoScale(); public: __property void set_AutoScale(bool); [JScript] public function get AutoScale() : Boolean; public function set AutoScale(Boolean);
true if the form will automatically scale itself and its controls based on the current font assigned to the form; otherwise false. The default is true.
You can use this property to allow your form and its controls to automatically adjust based on changes in the font. This can be useful in applications that are used in other countries where the font may increase or decrease based on the language specified for use by Windows.