Skip to main content
A newer version of this page is available. .
Tab

ASPxBinaryImage.ImageSizeMode Property

Gets or sets the value specifying how an image fits into the control sizes.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(ImageSizeMode.ActualSizeOrFit)]
public ImageSizeMode ImageSizeMode { get; set; }

Property Value

Type Default Description
ImageSizeMode **ActualSizeOrFit**

One of the ImageSizeMode enumeration values.

Available values:

Name Description
ActualSizeOrFit

If an image is bigger than the image area the image is reduced to fit the area. If an image is smaller than the image area, its size is not changed.

ImageSlider_SizeMode_ASOF

FitProportional

An image is enlarged or reduced to fit the image area.

ImageSlider_SizeMode_FP

FillAndCrop

An image is enlarged or reduced to fill the image area. Prominent parts are cropped.

ImageSlider_SizeMode_FillAndCrop

Remarks

Use the ImageSizeMode specify how an image fits the control sizes specified by the ASPxBinaryImage.Height and ASPxBinaryImage.Width properties.

Image Value Description
ImageSlider_SizeMode_ASOF ActualSizeOrFit If an image is bigger than the image area the image is reduced to fit the area. If an image is smaller than the image area, its size is not changed.
ImageSlider_SizeMode_FillAndCrop FillAndCrop An image is enlarged or reduced to fill the image area. Prominent parts are cropped.
ImageSlider_SizeMode_FP FitProportional An image is enlarged or reduced to fit the image area.

Note

The ImageSizeMode property is in effect provided that the BinaryImageEditProperties.EnableServerResize property is set to true; otherwise, the image is sent to the server side in original size and resized by a browser.

The ImageSizeMode property is not in effect if the BinaryImageEditingSettings.Enabled property is set to true.

See Also