UpdateCells
UpdateCells takes a Func<DataGridViewCell, bool>
parameter for searching specific cells to update and a value for updating the searched cells. Example:
_dataGridView.UpdateCells(
x =>
x.Value.ToString() == "[email protected]",
"[email protected]"
);
Last updated
Was this helpful?