ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1DragDropManager Class / DragThreshold Property



In This Topic
    DragThreshold Property (C1DragDropManager)
    In This Topic
    Gets or sets the distance in pixels that the mouse must move before a drag operation starts.
    Syntax
    'Declaration
     
    
    <DefaultValueAttribute(8)>
    Public Property DragThreshold As Integer
    'Usage
     
    
    Dim instance As C1DragDropManager
    Dim value As Integer
     
    instance.DragThreshold = value
     
    value = instance.DragThreshold
    [DefaultValue(8)]
    public int DragThreshold {get; set;}
    [DefaultValue(8)]
    public:
    property int DragThreshold {
       int get();
       void set (    int value);
    }
    Remarks
    This property affects the drag behavior of objects registered as drag sources using the RegisterDragSource method.
    See Also