Specifies zoom modes of the displayed image.
Namespace:
GraphicsMill
Assembly:
Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)
GraphicsMill.ZoomMode = function(); GraphicsMill.ZoomMode.createEnum('GraphicsMill.ZoomMode', false);
Member name | Description |
---|---|
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). |
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. |
fitToHeightShrinkOnly |
Zoom modifier is calculated automatically so that the image height would be the same as the control client area height. If image height 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. |
fitToWidthShrinkOnly |
Zoom modifier is calculated automatically so that the image width would be the same as the control client area width. If image width is smaller than the control client area, zooming modifier is set to 1 (i.e. no zoom). |
none |
Zoom modifier is specified only manually. Use zoom property. Also, you can use some zooming navigator controls. |
zoomControl |
The control is resized to have the same client area as the image dimensions. |