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

IModelCommonMemberViewItem.ImageSizeMode Property

Specifies how the current Property Editor must resize images.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

[ModelBrowsable(typeof(ImagePropertyEditorCalculator))]
[DefaultValue(ImageSizeMode.Zoom)]
ImageSizeMode ImageSizeMode { get; set; }

Property Value

Type Default Description
ImageSizeMode **Zoom**

An ImageSizeMode enumeration value specifying how the current Property Editor must resize images.

Available values:

Name Description
Normal

The Image Property Editor displays the StaticImage in the upper-left corner. The image is clipped if it is larger than the Property Editor’s region.

StretchImage

The StaticImage stretches or shrinks to fit the Image Property Editor.

AutoSize

The Image Property Editor’s control is sized to the size of the StaticImage.

CenterImage

The StaticImage is centered inside the Image Property Editor. The StaticImage is clipped if it does not fit into the Property Editor’s region.

Zoom

The StaticImage‘s size is scaled to fit the the Image Property Editor. The StaticImage’s aspect ratio is retained.

Remarks

Currently, the ImageSizeMode.Zoom and ImageSizeMode.StretchImage modes are not supported in ASP.NET applications.

This property is considered for image type properties. For details, refer to the ImageEditorAttribute class description.

See Also