FlexGrid for WPF | ComponentOne
C1.WPF.FlexGrid.4.6.2 Assembly / C1.WPF.FlexGrid Namespace / C1FlexGrid Class / ScrollingDeferred Event

In This Topic
    ScrollingDeferred Event
    In This Topic
    Occurs when scrolling is deferred while the user drags a scrollbar thumb.
    Syntax
    'Declaration
     
    Public Event ScrollingDeferred As EventHandler(Of CellRangeEventArgs)
    public event EventHandler<CellRangeEventArgs> ScrollingDeferred
    Event Data

    The event handler receives an argument of type CellRangeEventArgs containing data related to this event. The following CellRangeEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    CellRange affected by the event.  
    CellType of the range affected by the event.  
    Index of the column affected by the event.  
    GridPanel that contains the range affected by the event.  
    Index of the row affected by the event.  
    Remarks
    Deferred scrolling is enabled by the DeferScrolling property. It may improve the perceived performance of the grid by updating it only when the user releases the scrollbar thumb.
    See Also