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

Provides data for the BeginEdit, StopEdit and CancelEdit events of a Table
Inheritance: CellEventArgsBase
Mostra file Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
CellEditEventArgs ( Cell source, ICellEditor editor, Table table ) : System

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index and row index

CellEditEventArgs ( Cell source, ICellEditor editor, Table table, int row, int column, Rectangle cellRect ) : System

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index and row index

Method Details

CellEditEventArgs() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index and row index
public CellEditEventArgs ( Cell source, ICellEditor editor, Table table ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
editor ICellEditor The CellEditor used to edit the Cell
table ZForge.Controls.XPTable.Models.Table The Table that the Cell belongs to
return System

CellEditEventArgs() public method

Initializes a new instance of the CellEventArgs class with the specified Cell source, column index and row index
public CellEditEventArgs ( Cell source, ICellEditor editor, Table table, int row, int column, Rectangle cellRect ) : System
source ZForge.Controls.XPTable.Models.Cell The Cell that Raised the event
editor ICellEditor The CellEditor used to edit the Cell
table ZForge.Controls.XPTable.Models.Table The Table that the Cell belongs to
row int The Column index of the Cell
column int The Row index of the Cell
cellRect System.Drawing.Rectangle
return System