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
Syntaxpublic Func<T, bool> Filter { get; set; }
Public Property Filter As Func(Of T, Boolean)
Get
Set
member Filter : Func<'T, bool> with get, set
Property Value
Type:
FuncT,
BooleanThe 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