AD
Administrator
Syncfusion Team
September 19, 2005 10:37 AM UTC
Hi Kevin,
You could try this code snippet:
private void gridControl1_QueryCellInfo(object sender, Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs e)
{
string s;
if(e.RowIndex==1 && e.ColIndex==1)
{
s=Syncfusion.Windows.Forms.Grid.GridRangeInfo.GetAlphaLabel(e.ColIndex)+ Syncfusion.Windows.Forms.Grid.GridRangeInfo.GetNumericLabel(e.RowIndex);
Console.WriteLine(s);
}
}
Let us know if this helps.
Best Regards,
Jeba.