Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / ClipboardPasted Event


In This Topic
    ClipboardPasted Event (GcSpreadSheet)
    In This Topic
    Occurs when the user pastes from the Clipboard.
    Syntax
    'Declaration
     
    Public Event ClipboardPasted As EventHandler(Of ClipboardPastedEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ClipboardPastedEventArgs)
     
    AddHandler instance.ClipboardPasted, handler
    public event 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