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

Provides data for the CellMouseEnter, CellMouseLeave, CellMouseDown, CellMouseUp and CellMouseMove events of a Table
Inheritance: MouseEventArgs
Exibir arquivo Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
CellMouseEventArgs ( Cell cell, Table table, CellPos cellPos, Rectangle cellRect ) : System

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index and cell bounds

CellMouseEventArgs ( Cell cell, Table table, CellPos cellPos, Rectangle cellRect, MouseEventArgs mea ) : System

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index and cell bounds

CellMouseEventArgs ( Cell cell, Table table, int row, int column, Rectangle cellRect ) : System

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index and cell bounds

CellMouseEventArgs ( Cell cell, Table table, int row, int column, Rectangle cellRect, MouseEventArgs mea ) : System

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index, cell bounds and MouseEventArgs

Method Details

CellMouseEventArgs() public method

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index and cell bounds
public CellMouseEventArgs ( Cell cell, Table table, CellPos cellPos, Rectangle cellRect ) : System
cell ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
table ZForge.Controls.XPTable.Models.Table The Table the Cell belongs to
cellPos ZForge.Controls.XPTable.Models.CellPos
cellRect System.Drawing.Rectangle The Cell's bounding rectangle
return System

CellMouseEventArgs() public method

Initializes a new instance of the CellMouseEventArgs class with the specified source Cell, table, row index, column index and cell bounds
public CellMouseEventArgs ( Cell cell, Table table, CellPos cellPos, Rectangle cellRect, MouseEventArgs mea ) : System
cell ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
table ZForge.Controls.XPTable.Models.Table The Table the Cell belongs to
cellPos ZForge.Controls.XPTable.Models.CellPos
cellRect System.Drawing.Rectangle The Cell's bounding rectangle
mea MouseEventArgs
return System

CellMouseEventArgs() public method

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

CellMouseEventArgs() public method

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