BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Me.GridDataBoundGrid1.Model.CommandStack.Enabled = True
then SaveCellsInfo should be non-empty.
> Me.GridDataBoundGrid1.Model.CommandStack.Enabled = True
>
> then SaveCellsInfo should be non-empty.
private void gridControl1_CellsChanging(object sender, GridCellsChangingEventArgs e) { int row, col; GridData data = this.gridControl1.Data; bool b = e.Range.GetFirstCell(out row, out col); while(b) { string oldValue = ""; if(data[row, col] != null) { GridStyleInfo style = new GridStyleInfo(data[row, col]); oldValue = style.Text; Console.WriteLine("({0},{1})=[{2}] ", row, col, oldValue); } b = e.Range.GetNextCell(ref row, ref col); } }