ComponentOne FinancialChart for WPF
C1.WPF Namespace / DragDropEventHandler Delegate
Object that raised the event.
DragDropEventArgs that contains the event data.



In This Topic
    DragDropEventHandler Delegate
    In This Topic
    Method used to handle drag drop events.
    Syntax
    'Declaration
     
    
    Public Delegate Sub DragDropEventHandler( _
       ByVal source As Object, _
       ByVal e As DragDropEventArgs _
    ) 
    'Usage
     
    
    Dim instance As New DragDropEventHandler(AddressOf HandlerMethod)
    public delegate void DragDropEventHandler( 
       object source,
       DragDropEventArgs e
    )
    public delegate void DragDropEventHandler( 
       Object^ source,
       DragDropEventArgs^ e
    )

    Parameters

    source
    Object that raised the event.
    e
    DragDropEventArgs that contains the event data.
    See Also