AD
Administrator
Syncfusion Team
November 1, 2006 04:17 AM UTC
Hi Adam,
You can use the Renderer.GetCellBoundsCore method to get the cell bounds information from the grid. Below is a code
private void gridCellClick(object sender, GridCellClickEventArgs e)
{
GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
Rectangle rect = cc.Renderer.GetCellBoundsCore(e.RowIndex,e.ColIndex,true);
Console.WriteLine(rect);
}
Best Regards,
Haneef