DataGridEditCellDelegate Delegate

Edit cell delegate.

Definition

Namespace: BeeMobile.DataGrid
Assembly: BeeMobile.DataGrid.NET48 (in BeeMobile.DataGrid.NET48.dll) Version: 4.8.1.19
C#
public delegate Object EditCellDelegate(
	int aRowIndex,
	int aColumnIndex,
	DataGridCell anOldValue,
	Rectangle aClientRectangle
)

Parameters

aRowIndex  Int32
Row index of the cell.
aColumnIndex  Int32
Column index of the cell.
anOldValue  DataGridCell
Old value.
aClientRectangle  Rectangle
Client rectangle.

Return Value

Object
The new value.

See Also