In my winform
am using DataGgridView
In some scenario i want to set special font to some column and i achieve that using following code
this.grvInvoice.Columns["mat_Name"].DefaultCellStyle.Font = new Font("Verdana", 14);
But i want to set certain font and size to some cell only. i try the following code
grvRequest.Rows[i].Cells["item"].Style.Font = new Font("Verdana", 14);
Bu it doesn't work. Is it possible to set specific font and size dynamically to a cell of DataGridView