ZForge.Controls.XPTable.Events.CellMouseEventArgs.CellMouseEventArgs C# (CSharp) Method

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
        public CellMouseEventArgs(Cell cell, Table table, CellPos cellPos, Rectangle cellRect)
            : base(MouseButtons.None, 0, -1, -1, 0)
        {
            this.cell = cell;
            this.table = table;
            this.row = cellPos.Row;
            this.column = cellPos.Column;
            this.cellRect = cellRect;
        }

Same methods

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