AD
Administrator
Syncfusion Team
September 22, 2006 04:31 AM UTC
Hi Colin,
Yes. Please use this code snippet to get the cellstyle from renderer.
protected override bool OnActivating(int rowIndex, int colIndex)
{
GridStyleInfo style = this.Grid.Model[rowIndex,colIndex];
if( style != null)
Console.WriteLine(style.Text );
return base.OnActivating (rowIndex, colIndex);
}
Thanks,
Haneef