layout | title | keywords | description | needAutoGenerateSidebar |
---|---|---|---|---|
default-layout |
How to zoom images using mouse wheel |
dynamic .net twain, zoom images, mouse wheel |
How to zoom images using mouse wheel |
true |
Dynamic .NET TWAIN allows you to zoom images using hotkeys. Below is a simple sample in C# to use the Ctrl key + mouse wheel to zoom images in Dynamic .NET TWAIN.
private void btnScan_Click(object sender, EventArgs e)
{
//show current image only
dsViewer1.SetViewMode(-1, -1);
//enable zooming image using hot key
dsViewer1.EnableInteractiveZoom = true;
}