DataGridValidateDelegate Delegate
Checks the new value, whether it is valid and could be commited or invalid and the changes would be canceled.
Namespace: BeeMobile.DataGridAssembly: BeeMobile.DataGrid.NET48 (in BeeMobile.DataGrid.NET48.dll) Version: 4.8.1.19
public delegate bool ValidateDelegate(
int aRowIndex,
int aColumnIndex,
DataGridCell anOldValue,
Object aNewValue
)
Public Delegate Function ValidateDelegate (
aRowIndex As Integer,
aColumnIndex As Integer,
anOldValue As DataGridCell,
aNewValue As Object
) As Boolean
- aRowIndex Int32
- Row index of the cell.
- aColumnIndex Int32
- Column index of the cell.
- anOldValue DataGridCell
- Old value.
- aNewValue Object
- New value.
BooleanTrue when the new value is valid; otherwise false.