JAMS Developer Guide
MouseWheel Event (EditSourceDialog)


MVPSI.JAMS Namespace > EditSourceDialog Class : MouseWheel Event
Syntax
'Declaration
 
<SRDescriptionAttribute("Occurs when the mouse wheel moves while the control has focus.")>
<SRCategoryAttribute("Mouse")>
<System.ComponentModel.BrowsableAttribute(False)>
<System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
Public Event MouseWheel As System.Windows.Forms.MouseEventHandler
'Usage
 
Dim instance As EditSourceDialog
Dim handler As System.Windows.Forms.MouseEventHandler
 
AddHandler instance.MouseWheel, handler
[SRDescription("Occurs when the mouse wheel moves while the control has focus.")]
[SRCategory("Mouse")]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
public event System.Windows.Forms.MouseEventHandler MouseWheel
Event Data

The event handler receives an argument of type System.Windows.Forms.MouseEventArgs containing data related to this event. The following MouseEventArgs properties provide information specific to this event.

PropertyDescription
 
 
 
 
 
 
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