ActiveReports 12
MouseWheel Event (BackdropItem)

GrapeCity.ActiveReports.Chart.v12 Assembly > GrapeCity.ActiveReports.Chart Namespace > BackdropItem Class : MouseWheel Event
Occurs when the mouse wheel moves while the control has focus.
Syntax
'Declaration
 
Public Event MouseWheel As GraphMouseEventHandler
public event GraphMouseEventHandler MouseWheel
Event Data

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

PropertyDescription
Gets which mouse button was pressed. (Inherited from System.Windows.Forms.MouseEventArgs)
Gets the number of times the mouse button was pressed and released. (Inherited from System.Windows.Forms.MouseEventArgs)
Gets or sets the control on which the mouse event occurred.  
Gets a signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel. (Inherited from System.Windows.Forms.MouseEventArgs)
Gets a count of the number of times the item was clicked.  
Gets the location of the mouse during the generating mouse event. (Inherited from System.Windows.Forms.MouseEventArgs)
Gets a count of the number of times the item was clicked.  
Gets the X coordinate of the mouse.  
Gets the Y coordinate of the mouse.  
Gets the x-coordinate of the mouse during the generating mouse event. (Inherited from System.Windows.Forms.MouseEventArgs)
Gets the y-coordinate of the mouse during the generating mouse event. (Inherited from System.Windows.Forms.MouseEventArgs)
See Also