Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / RangeFiltered Event


In This Topic
    RangeFiltered Event (GcSpreadSheet)
    In This Topic
    Occurs when a column has just been automatically sorted.
    Syntax
    'Declaration
     
    Public Event RangeFiltered As EventHandler(Of RangeFilteredEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of RangeFilteredEventArgs)
     
    AddHandler instance.RangeFiltered, handler
    public event EventHandler<RangeFilteredEventArgs> RangeFiltered
    Event Data

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

    PropertyDescription
    Gets the index of the column that was automatically filtered.  
    Gets the values to filter the column by.  
    See Also