'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.
Property | Description |
---|---|
Column | Gets the index of the column that was automatically filtered. |
FilterValues | Gets the values to filter the column by. |
See Also