The WebImageViewer™ control allows the end user to scroll through the images while dragging the mouse. The images are scrolled through using the Continuous scroll animation.
By default, the EnableDragScrolling property is set to True.
The following code snippet sets EnableDragScrolling to False
In Visual Basic:
' Sets EnableDragScrolling to False Me.WebImageViewer1.EnableDragScrolling = false
In C#:
// Sets EnableDragScrolling to False this.WebImageViewer1.EnableDragScrolling = false;