GDBG: Begin/End events for ClipboardPaste?

For regular edits, there are events signaling the begin and end where I can do special things I need to to take care of behind-the-scenes issues (CurrentCellStartEditing/CurrentCellEditingComplete). How can I get notified when a Paste has completed?

2 Replies

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.

Loader.
Up arrow icon