DataGridValidateDelegate Delegate

Checks the new value, whether it is valid and could be commited or invalid and the changes would be canceled.

Definition

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

Parameters

aRowIndex  Int32
Row index of the cell.
aColumnIndex  Int32
Column index of the cell.
anOldValue  DataGridCell
Old value.
aNewValue  Object
New value.

Return Value

Boolean
True when the new value is valid; otherwise false.

See Also