ControlSizeMode Enumeration

Summary

Determines how the control displays the image and the automatic adjustments of the display rectangles.

Syntax

JavaScript Syntax
lt.Controls.ControlSizeMode = { 
	None: 0, 
	ActualSize: 1, 
	Fit: 2, 
	FitAlways: 3, 
	FitWidth: 4, 
	FitHeight: 5, 
	Stretch: 6 
} 
TypeScript Syntax
lt.Controls.ControlSizeMode = { 
	None: 0, 
	ActualSize: 1, 
	Fit: 2, 
	FitAlways: 3, 
	FitWidth: 4, 
	FitHeight: 5, 
	Stretch: 6 
} 

Members

0 None

(0) No special sizing

1 ActualSize

(1) Use the image actual size

2 Fit

(2) 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.

3 FitAlways

(3) 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).

4 FitWidth

(4) Fit the image width to be the size of the width of the viewing area while maintaining the aspect ratio.

5 FitHeight

(5) Fit the image height to be the size of the height of the viewing area while maintaining the aspect ratio.

6 Stretch

(6) 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

Requirements

Target Platforms

See Also

Reference

Leadtools.Controls Namespace

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly