Hello,
I'd like to alter the font, including the background and the
foreground color of individual cells for a realtime app'.
this.dataGridView1.ColumnCount = 5;
this.dataGridView1.RowCount = 10;
this.dataGridView1.Rows[2].Cells[3].Value = "hello";
...?
Can someone help ?
Thanks, Martin
ClayB [Syncfusion] - 15 Oct 2004 11:51 GMT
Try code like:
this.dataGridView1.Rows[2].Cells[2].Style.BackColor = Color.Red;
this.dataGridView1.Rows[2].Cells[2].Style.Font = new Font("Arial", 13);
this.dataGridView1.Rows[2].Cells[2].Style.ForeColor = Color.White;
===========================
Clay Burch, .NET MVP
Visit www.syncfusion.com for the coolest tools
> Hello,
> I'd like to alter the font, including the background and the
[quoted text clipped - 6 lines]
> Can someone help ?
> Thanks, Martin