This documentation is for the old version. Go to the latest Graphics Mill docs

ZoomMode Enumeration

Contains possible values for the zooming modes.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)

Syntax

Visual Basic
Public Enumeration ZoomMode
C#
public enum ZoomMode

Members

Member name Description
None

Zoom modifier is specified only manually. Use Zoom property. Also, you can use some zooming navigator controls.

BestFit

Zoom modifier is calculated automatically so that entire image could fit the control. If image is smaller than the control client area, the image is stretched to occupy as much area as possible.

BestFitShrinkOnly

Zoom modifier is calculated automatically so that entire image could fit the control. If image is smaller than the control client area, zooming modifier is set to 1 (i.e. no zoom).

FitToWidth

Zoom modifier is calculated automatically so that the image width would be the same as the control client area width. If the image width is smaller than the control client area width, image is stretched.

FitToHeight

Zoom modifier is calculated automatically so that the image height would be the same as the control client area height. If the image height is smaller than the control client area height, image is stretched.

ZoomControl

The control is resized to have the same client area as the image dimensions.

FitToWidthShrinkOnly

Zoom modifier is calculated automatically so that the image width would be the same as the control client area width. If the image width is smaller than the control client area width, zooming modifier is set to 1 (i.e. no zoom).

FitToHeightShrinkOnly

Zoom modifier is calculated automatically so that the image height would be the same as the control client area height. If the image height is smaller than the control client area height, zooming modifier is set to 1 (i.e. no zoom).

See Also

Reference