Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

ControlSizeMode Enumeration

Show in webframe
Determines how the control displays the image and the automatic adjustments of the display rectangles.
Syntax
Leadtools.Controls.ControlSizeMode = function() { };
Leadtools.Controls.ControlSizeMode.prototype = {
	none = 0,
	actualSize = 1,
	fit = 2,
	fitAlways = 3,
	fitWidth = 4,
	fitHeight = 5,
	stretch = 6,
	
 };
Members
ValueMemberDescription
0none No special sizing
1actualSize Use the image actual size
2fit Fit the image into the viewing area while maintaining the aspect ratio. If the image size is smaller than the viewing area, no resizing is done.
3fitAlways Always fit the image into the viewing area while maintaining the aspect ratio even if the image size is smaller than the viewing area (in which case, the image will be scaled up).
4fitWidth Fit the image width to be the size of the width of the viewing area while maintaining the aspect ratio.
5fitHeight Fit the image height to be the size of the height of the viewing area while maintaining the aspect ratio.
6stretch Fit the image to fill the viewing area. Aspect ratio might not be maintained.
Remarks

ControlSizeMode is used by the ImageViewer.Zoom and ImageViewerItem.Zoom methods.

Example

For an example, refer to ImageViewer.Zoom

See Also

Reference

Leadtools.Controls Namespace

Error processing SSI file