ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1DragDropManager Class / UnregisterDragSource Method
System.Windows.UIElement that will no longer act as a drag source.



In This Topic
    UnregisterDragSource Method
    In This Topic
    Un-registers a System.Windows.UIElement as a drag source.
    Syntax
    'Declaration
     
    
    Public Sub UnregisterDragSource( _
       ByVal source As UIElement _
    ) 
    'Usage
     
    
    Dim instance As C1DragDropManager
    Dim source As UIElement
     
    instance.UnregisterDragSource(source)
    public void UnregisterDragSource( 
       UIElement source
    )
    public:
    void UnregisterDragSource( 
       UIElement^ source
    ) 

    Parameters

    source
    System.Windows.UIElement that will no longer act as a drag source.
    Remarks
    Calling this method has the same effect as registering the element as a drag source with no effects (DragDropEffect.None).
    See Also