'Declaration
Public Event FilterItem As EventHandler(Of FilterItemEventArgs)
public event EventHandler<FilterItemEventArgs> FilterItem
Event Data
The event handler receives an argument of type FilterItemEventArgs containing data related to this event. The following FilterItemEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | Gets the data item under consideration. |
Skip | Gets or sets a value indicating whether the item should be skipped. |
See Also