Class TabMouseEventArgs
Contains event data for mouse events related to a single tab.
Inherited Members
Namespace: Manina.Windows.Forms
Assembly: TabControl.dll
Syntax
public class TabMouseEventArgs : TabEventArgs
Constructors
| Improve this Doc View SourceTabMouseEventArgs(Tab, MouseButtons, Int32, Int32, Point)
Declaration
public TabMouseEventArgs(Tab tab, MouseButtons button, int clicks, int delta, Point location)
Parameters
Type | Name | Description |
---|---|---|
Tab | tab | |
System.Windows.Forms.MouseButtons | button | |
System.Int32 | clicks | |
System.Int32 | delta | |
System.Drawing.Point | location |
Properties
| Improve this Doc View SourceButton
Gets which mouse button was pressed.
Declaration
public MouseButtons Button { get; }
Property Value
Type | Description |
---|---|
System.Windows.Forms.MouseButtons |
Clicks
Gets the number of times the mouse button was pressed and released.
Declaration
public int Clicks { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Delta
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.
Declaration
public int Delta { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Location
Gets the location of the mouse during the generating mouse event.
Declaration
public Point Location { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Point |
X
Gets the x-coordinate of the mouse during the generating mouse event.
Declaration
public int X { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Y
Gets the y-coordinate of the mouse during the generating mouse event.
Declaration
public int Y { get; }
Property Value
Type | Description |
---|---|
System.Int32 |