FindRows
FindRows takes a Func<DataGridViewCell, bool>
parameter in order to find rows based on a specific data grid cells. Example:
var dataRowsSearched = _dataGridView
.FindRows(
x =>
x.Value.ToString() == "Grant"
);
Last updated
Was this helpful?