AD
Administrator
Syncfusion Team
October 27, 2003 07:40 AM UTC
I think you are referring to the Ole Drag and Drop behavior. By default the grid will loop through all cells and create a Data object that contains all cells in the selected range.
You can adjust this behavior by handling the QueryOleDataSourceData event. There you could supply different information, e.g. maybe just the cell coordinates of the selected range.
Or if you do not need Ole Drag Drop you can turn it off with
gridControl1.ControllerOptions = GridControllerOptions.All & (~GridControllerOptions.OleDataSource);
Stefan