AD
Administrator
Syncfusion Team
February 28, 2006 05:04 AM UTC
Hi Ken,
The ClipboardPaste and ClipboardPasted are the events that get triggered at the start and end of the pasting process. You can use the ClipboardPasted event to be notified when paste has been completed.
this.gridDataBoundGrid1.Model.ClipboardPasted += new GridCutPasteEventHandler(gridDataBoundGrid1_ClipboardPasted);
Let us know if this serves your purpose.
Best Regards
Madhan.
KO
Ken Overton
February 28, 2006 02:01 PM UTC
That''s perfect, thanks much.