'Declaration
Public Event MouseMove As NavItemMouseEventHandler
public event NavItemMouseEventHandler MouseMove
Event Data
The event handler receives an argument of type NavItemMouseEventArgs containing data related to this event. The following NavItemMouseEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | (Inherited from System.Windows.Forms.MouseEventArgs) |
Clicks | (Inherited from System.Windows.Forms.MouseEventArgs) |
Delta | (Inherited from System.Windows.Forms.MouseEventArgs) |
Handled | Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing. |
Location | (Inherited from System.Windows.Forms.MouseEventArgs) |
Navigator | Gets C1.Win.Input.DbNavigator.C1DbNavigator that is the owner of the event. |
X | (Inherited from System.Windows.Forms.MouseEventArgs) |
Y | (Inherited from System.Windows.Forms.MouseEventArgs) |
See Also