3
Answers

datagridview - making a cell bold

Grant McConville

Grant McConville

16y
27.1k
1
I am not sure how I can find out weather a cell is bold or not, and then change it without effecting anything else such as italics, underline etc. All I have at the moment is foreach (DataGridViewCell cell in grid.SelectedCells) { cell.Style.Font = new Font(grid.Font, FontStyle.Bold); } grid is my datagridview. I hope this is easy to understand, thanks
Answers (3)