The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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
ADAdministrator Syncfusion Team March 23, 2004 12:41 PM UTC
There is a gridControl1.Model.ClipboardPasted event. It is a member of teh Model.
ADAdministrator 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
ADAdministrator 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