BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
GridStyleInfo copyStyle = new Syncfusion.Windows.Forms.Grid.GridStyleInfo(this.gridControl1[1,1]);
copyStyle.ResetCellValue();
I then ran the program typed somethng into cell 1,1, and clicked the button. The value in cell 1,1 did not change. I am using 2.1.0.9.
Can you post a sample showing the problem?
string cv1 = e.Style.CellValue.ToString();
GridStyleInfo a = new GridStyleInfo();
a.CopyFrom(e.Style);
a.ResetCellValue();
string cv2 = e.Style.CellValue.ToString();