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


In This Topic
    FloatingObjectPasted Event (GcSpreadSheet)
    In This Topic
    Occurs when the floating object is pasted.
    Syntax
    'Declaration
     
    Public Event FloatingObjectPasted As EventHandler(Of FloatingObjectPastedEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of FloatingObjectPastedEventArgs)
     
    AddHandler instance.FloatingObjectPasted, handler
    public event EventHandler<FloatingObjectPastedEventArgs> FloatingObjectPasted
    Event Data

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

    PropertyDescription
    Gets the pasted object.  
    Gets the worksheet.  
    See Also