Spread Silverlight Documentation
ClipboardPasted Event (SheetView)


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

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

PropertyDescription
Gets the cell range when pasting.  
Gets the ClipboardPasteOptions value when pasting.  
Gets the source range.  
Gets the source sheet.  
Gets the worksheet.  
See Also