ComponentOne FinancialChart for WPF
C1.WPF Namespace / DragDropEventArgs Class / ScrollViewer Property



In This Topic
    ScrollViewer Property (DragDropEventArgs)
    In This Topic
    Gets or sets the ScrollViewer that will scroll automatically during the drag drop operation when the mouse is near its edge.
    Syntax
    'Declaration
     
    
    Public Property ScrollViewer As ScrollViewer
    'Usage
     
    
    Dim instance As DragDropEventArgs
    Dim value As ScrollViewer
     
    instance.ScrollViewer = value
     
    value = instance.ScrollViewer
    public ScrollViewer ScrollViewer {get; set;}
    public:
    property ScrollViewer^ ScrollViewer {
       ScrollViewer^ get();
       void set (    ScrollViewer^ value);
    }
    Remarks
    The C1DragDropManager selects the ScrollViewer by default. If there are several nested scroll viewers, the innermost is selected by default. If that is not the desired behavior, callers may modify this behavior by setting this property to a reference to the desired ScrollViewer.
    See Also