PrintPreviewDialog::AutoScale Property
This API supports the product infrastructure and is not intended to be used directly from your code.
Gets or sets a value indicating whether the form adjusts its size to fit the height of the font used on the form and scales its controls.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property bool AutoScale { bool get(); void set(bool value); }
Property Value
Type: System::Booleantrue 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 where the font might increase or decrease based on the language specified for use by Windows.
To obtain the size the form will auto scale to, use the AutoScaleBaseSize property. If you want to determine the size the form will auto scale to based on a specific font, use the GetAutoScaleSize method.
Available since 1.1