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