Show / Hide Table of Contents

Class TabMouseEventArgs

Contains event data for mouse events related to a single tab.

Inheritance
System.Object
System.EventArgs
TabEventArgs
TabMouseEventArgs
Inherited Members
TabEventArgs.Tab
Namespace: Manina.Windows.Forms
Assembly: TabControl.dll
Syntax
public class TabMouseEventArgs : TabEventArgs

Constructors

| Improve this Doc View Source

TabMouseEventArgs(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 Source

Button

Gets which mouse button was pressed.

Declaration
public MouseButtons Button { get; }
Property Value
Type Description
System.Windows.Forms.MouseButtons
| Improve this Doc View Source

Clicks

Gets the number of times the mouse button was pressed and released.

Declaration
public int Clicks { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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
| Improve this Doc View Source

Location

Gets the location of the mouse during the generating mouse event.

Declaration
public Point Location { get; }
Property Value
Type Description
System.Drawing.Point
| Improve this Doc View Source

X

Gets the x-coordinate of the mouse during the generating mouse event.

Declaration
public int X { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Y

Gets the y-coordinate of the mouse during the generating mouse event.

Declaration
public int Y { get; }
Property Value
Type Description
System.Int32
Back to top Copyright © 2018 Özgür Özçıtak