Click or drag to resize

FilterCollectionTFilter Property

Gets or sets the filter delegate for items in this collection.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public Func<T, bool> Filter { get; set; }

Property Value

Type: FuncT, Boolean
The filter delegate.
Remarks
This will update this collection to contain only items that match the specified filter from the underlying list. This triggers a collection changed event, so any control that is using this collection as its data store should automatically update to show the new results.
See Also