private void gridView1_CellValueChanging(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e)
{
Row row = new Row();
row.Id = System.Guid.NewGuid();
}
//Is it possible to store the row.Id value to e or anything like that so that I can get that value next time I click on the same cell. I do not want to store it as private static guid value because that way all the other cells will have same row.Id.