Skip to main content

ImageZoomSettings.LargeImageLoadMode Property

Gets or sets a value specifying the way to load a large image.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public LargeImageLoadMode LargeImageLoadMode { get; set; }

Property Value

Type Description
LargeImageLoadMode

One of the LargeImageLoadMode enumeration values.

Available values:

Name Description
Direct

A large image is loaded to the client side directly when the control is loaded.

OnPageLoad

A large image is loaded to the client side on the page load event.

OnFirstShow

A large image is loaded to the client side when the image is shown for the first time.

Remarks

The large image is displayed in the zoom window and expand window. Use the LargeImageLoadMode property to specify when the large image should be loaded to the client side.

See Also