C# Class ZForge.Controls.XPTable.Events.HeaderMouseEventArgs

Provides data for the HeaderMouseEnter, HeaderMouseLeave, HeaderMouseDown, HeaderMouseUp, HeaderMouseMove, HeaderClick and HeaderDoubleClick events of a Table
Inheritance: MouseEventArgs
显示文件 Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
HeaderMouseEventArgs ( Column column, Table table, int index, Rectangle headerRect ) : System

Initializes a new instance of the HeaderMouseEventArgs class with the specified source Column, Table, column index and column header bounds

HeaderMouseEventArgs ( Column column, Table table, int index, Rectangle headerRect, MouseEventArgs mea ) : System

Initializes a new instance of the HeaderMouseEventArgs class with the specified source Column, Table, column index, column header bounds and MouseEventArgs

Method Details

HeaderMouseEventArgs() public method

Initializes a new instance of the HeaderMouseEventArgs class with the specified source Column, Table, column index and column header bounds
public HeaderMouseEventArgs ( Column column, Table table, int index, Rectangle headerRect ) : System
column ZForge.Controls.XPTable.Models.Column The Column that Raised the event
table ZForge.Controls.XPTable.Models.Table The Table the Column belongs to
index int The index of the Column
headerRect System.Drawing.Rectangle The column header's bounding rectangle
return System

HeaderMouseEventArgs() public method

Initializes a new instance of the HeaderMouseEventArgs class with the specified source Column, Table, column index, column header bounds and MouseEventArgs
public HeaderMouseEventArgs ( Column column, Table table, int index, Rectangle headerRect, MouseEventArgs mea ) : System
column ZForge.Controls.XPTable.Models.Column The Column that Raised the event
table ZForge.Controls.XPTable.Models.Table The Table the Column belongs to
index int The index of the Column
headerRect System.Drawing.Rectangle The column header's bounding rectangle
mea MouseEventArgs The MouseEventArgs that contains data about the /// mouse event
return System