piDogDataView.DataView.EditCellPaste

Scope: Public
Event EditCellPaste() As Boolean
The Paste Menu was selected while a cell is being edited. Use this event to handle the paste by returning true.


//An example to paste tab delimited text into the dataview when a cell is being edited rather than pasting it all into the cell.
Dim c As New Clipboard
If c.TextAvailable And (c.Text.InStr(Chr(9))>0 Or c.Text.InStr(Chr(10))>0) Then
Me.SetFocus
Me.Paste
Return True
end if