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
Syntaxpublic Func<IDisposable> Change { get; set; }
Public Property Change As Func(Of IDisposable)
Get
Set
member Change : Func<IDisposable> with get, set
Property Value
Type:
FuncIDisposableThe 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