Spread Silverlight Documentation
ClipboardPasting Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : ClipboardPasting Event
Occurs when the user pastes from the Clipboard.
Syntax
'Declaration
 
Public Event ClipboardPasting As System.EventHandler(Of ClipboardPastingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of ClipboardPastingEventArgs)
 
AddHandler instance.ClipboardPasting, handler
public event System.EventHandler<ClipboardPastingEventArgs> ClipboardPasting
Event Data

The event handler receives an argument of type ClipboardPastingEventArgs containing data related to this event. The following ClipboardPastingEventArgs properties provide information specific to this event.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the cell range for pasting.  
Gets a value indicating whether is cutting.  
Gets the ClipboardPasteOptions value when pasting.  
Gets the soruce range.  
Gets the source sheet.  
Gets the worksheet for patsting.  
See Also