OnContentMouseWheel Method

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Called in response to a MouseWheel event in the DocumentViewer's viewing area.

Namespace: PDFTron.SilverDox.Controls
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
protected virtual void OnContentMouseWheel(
	Object sender,
	MouseWheelEventArgs e
)
Visual Basic
Protected Overridable Sub OnContentMouseWheel ( _
	sender As Object, _
	e As MouseWheelEventArgs _
)
Visual C++
protected:
virtual void OnContentMouseWheel(
	Object^ sender, 
	MouseWheelEventArgs^ e
)

Parameters

sender
Type: System..::..Object
The object OnContentMouseWheel.
e
Type: System.Windows.Input..::..MouseWheelEventArgs
The data for the event.

Remarks

The OnContentMouseWheel method is called in response to the MouseWheel event. This method allows derived classes to override or extend the MouseLeftButtonDown response to the event.

See Also