ASPxImageZoom.LargeImageLoadMode Property
Gets or sets a value specifying when a large image is loaded.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(LargeImageLoadMode.Direct)]
public LargeImageLoadMode LargeImageLoadMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
LargeImageLoadMode | Direct | 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