HA
haneefm
Syncfusion Team
July 24, 2007 06:32 PM UTC
Hi Thanvir,
You can get the RowIndex and ColIndex using the Grid.PointToRowCol method. Below are the code snippet
public void CurrencyChangedHandler(string oldCCY, string newCCY)
{
int row, col;
if(this.Grid.PointToRowCol(System.Windows.Forms.Control.MousePosition , out row, out col) && row == 0 && col > 0)
{
this.Grid.RefreshRange(GridRangeInfo.Cell(row,col));
}
}
Best regards,
Haneef