AD
Administrator
Syncfusion Team
April 27, 2004 03:24 PM UTC
Hi Dan,
What do you want in the header cell area? to be left blank?
You can try making the header cell to be static. Or you could try handling the DrawCell event and cancel the drawing for the particular header cells.
private void gridControl1_DrawCell(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e)
{
if(e.RowIndex == 0 && e.ColIndex == 1)
{
e.Cancel = true;
}
}
Regards,
Jay N