ComponentOne FinancialChart for WPF
C1.WPF Namespace / DragDropEventArgs Class / DragDropEventArgs Constructor
System.Windows.RoutedEventArgs that contains mouse state information.
System.Windows.UIElement acting as a drag source.
System.Windows.UIElement acting as a drop target.
DragDropEffect that specifies the action to be performed when the drag and drop process is completed.
ScrollViewer that scrolls to show the target location.



In This Topic
    DragDropEventArgs Constructor
    In This Topic
    Initializes a new instance of a DragDropEventArgs.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal e As RoutedEventArgs, _
       ByVal source As UIElement, _
       ByVal target As UIElement, _
       ByVal effect As DragDropEffect, _
       ByVal scrollViewer As ScrollViewer _
    )
    'Usage
     
    
    Dim e As RoutedEventArgs
    Dim source As UIElement
    Dim target As UIElement
    Dim effect As DragDropEffect
    Dim scrollViewer As ScrollViewer
     
    Dim instance As New DragDropEventArgs(e, source, target, effect, scrollViewer)

    Parameters

    e
    System.Windows.RoutedEventArgs that contains mouse state information.
    source
    System.Windows.UIElement acting as a drag source.
    target
    System.Windows.UIElement acting as a drop target.
    effect
    DragDropEffect that specifies the action to be performed when the drag and drop process is completed.
    scrollViewer
    ScrollViewer that scrolls to show the target location.
    See Also