You can use the CurrentCellChanged event for this.
private void gridControl1_CurrentCellChanged(object sender, System.EventArgs e)
{
GridCurrentCell cc = this.gridControl1.CurrentCell;
string newValue = cc.Renderer.ControlText;
double d = double.Parse(newValue);
Console.WriteLine(d.ToString());
}