PDFView4NET WPF Edition
PageMouseLeave Event




O2S.Components.PDFView4NET.WPF Namespace > PDFPageView Class : PageMouseLeave Event
Gets or sets the event that is fired when the mouse leaves a page control.
Syntax
'Declaration
 
Public Event PageMouseLeave As EventHandler(Of PageMouseEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of PageMouseEventArgs)
 
AddHandler instance.PageMouseLeave, handler
public event EventHandler<PageMouseEventArgs> PageMouseLeave
public: __event EventHandler<PageMouseEventArgs*>* PageMouseLeave
public:
event EventHandler<PageMouseEventArgs^>^ PageMouseLeave
Event Data

The event handler receives an argument of type PageMouseEventArgs containing data related to this event. The following PageMouseEventArgs properties provide information specific to this event.

PropertyDescription
Gets the mouse position relative to the control in screen coordinates.  
Gets the mouse position relative to the page in screen coordinates.  
Gets the PDF page.  
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also