OnContentMouseRightButtonUp Method

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Called in response to a MouseRightButtonUp 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 OnContentMouseRightButtonUp(
	Object sender,
	MouseButtonEventArgs e
)
Visual Basic
Protected Overridable Sub OnContentMouseRightButtonUp ( _
	sender As Object, _
	e As MouseButtonEventArgs _
)
Visual C++
protected:
virtual void OnContentMouseRightButtonUp(
	Object^ sender, 
	MouseButtonEventArgs^ e
)

Parameters

sender
Type: System..::..Object
The object where the event occured.
e
Type: System.Windows.Input..::..MouseButtonEventArgs
The data for the event.

Remarks

The OnContentMouseRightButtonUp method is called in response to the MouseRightButtonUp event. This method allows derived classes to override or extend the response to the MouseRightButtonUp event.

See Also