pastecell

Is there a way to tell when you have reached the end of the paste cell text event if you are copying a range of data? So you know you have pasted your last cell in that range? thanks

3 Replies

AD Administrator Syncfusion Team March 23, 2004 12:41 PM UTC

There is a gridControl1.Model.ClipboardPasted event. It is a member of teh Model.


AD Administrator Syncfusion Team March 23, 2004 04:07 PM UTC

I cant seem to find the event your talking about in the drop down list for my grid control? Am I missing something? Matt


AD Administrator Syncfusion Team March 23, 2004 04:52 PM UTC

It is not a member of GridControl. It is a member of GridControl.Model. If you are using VB, then you would subscribe to it using AddHandler. ''in formload AddHandler Me.gridControl1.Model.ClipboardPasted, AddressOf gridModel_ClipboardPasted ''then the actual handler Private Sub gridModel_ClipboardPasted(sender As Object, e As GridCutPasteEventArgs) Console.WriteLine("gridModel_ClipboardPasted") End Sub ''gridModel_ClipboardPasted

Loader.
Up arrow icon