Table of Contents

Delegate CollectionItemRangeChangedHandler<T>

Namespace
Alternet.Base.Collections
Assembly
Alternet.UI.Common.dll

Represents the method that will handle an event when multiple item in the collection were changed.

public delegate void CollectionItemRangeChangedHandler<T>(object? sender, int index, IEnumerable<T> items)

Parameters

sender object

The source of the event.

index int

The index where the change occurred.

items IEnumerable<T>

The items being affected.

Type Parameters

T

The type of the item.