ComponentOne TileControl for WinForms
FilterItem Event

C1.Win.C1TileControl.4 Assembly > C1.Win.C1Tile Namespace > C1TileControl Class : FilterItem Event
Occurs when loading an item from the data source. It allows to skip some items if necessary.
Syntax
'Declaration
 
Public Event FilterItem As System.EventHandler(Of FilterItemEventArgs)
public event System.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.

PropertyDescription
Gets the data item under consideration.  
Gets or sets a value indicating whether the item should be skipped.  
See Also