2
Reply

Check my code for datagridview

Shovan Saha

Shovan Saha

Aug 15 2017 1:52 PM
238
I have written code that results for only 1st row. I want to apply all rows. Please help me. 
private void specialFont()
{
using (Font font = new Font(
"Arial", 9, FontStyle.Bold))
{
dataGridView1AP.Rows[0].Cells[3].Style.Font = font;
}
}
 

Answers (2)