I have a DataGridView that has MultiSelect = true. After the user selects different cells from different rows how can I get the value of all the selected cells?
I have a DataGridView that has MultiSelect = true. After the user selects different
Share
You can iterate over SelectedCells.
You asked only for the value, but you probably also want to know the row and the column of the cell otherwise the value could be meaningless. You can access these also on the cell object.