Click or drag to resize

FilterCollectionTChange Property

Gets or sets the delegate to create a change object each time the collection is filtered.

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

Property Value

Type: FuncIDisposable
The change delegate.
Remarks
This is used so you can perform operations before or after a change has been made to the collection. The return value of the delegate is disposed after the change, allowing the object to perform any operations afterwards.
See Also