Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

using System;

using System.Web.UI;
using DevExpress.Web;
public partial class ImageZoom_Features : Page {
protected void Page_Load(object sender, EventArgs e) {
zoom.ShowHint = chShowHint.Checked;
zoom.EnableExpandMode = chEnableExpandMode.Checked;
zoom.SettingsZoomMode.ZoomWindowPosition = (ZoomWindowPosition)ddlZoomWi
ndowPosition.Value;
zoom.SettingsZoomMode.MouseBoxOpacityMode = (MouseBoxOpacityMode)ddlMous
eBoxOpacityMode.Value;
zoom.LargeImageLoadMode = (LargeImageLoadMode)ddlLargeImageLoadMode.Valu
e;
}
}

You might also like