AD
Administrator
Syncfusion Team
January 23, 2003 09:16 PM UTC
Hi Chuck,
You could either implement your own IGridDataObjectConsumer. The grid has two default IGridDataObjectConsumer objects registered for "Text" and internal grid data.
But you can add your more consumers for your own data.
See class reference for IGridDataObjectConsumer and RegisterDataObjectConsumer or let us know if you need sample code for this.
- Or -
You disable the grids default ole drop target behavior and then you just handle the ole drop target events of the Control class. You can disable the grid drop target behavoir
with
[C#]
Model.Options.ControllerOptions = Model.Options.ControllerOptions & ~GridControllerOptions.OleDropTarget;
Stefan