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


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