Skip to main content
A newer version of this page is available. .

ItemsCollectionChangedEventArgs(ItemType, NotifyCollectionChangedEventArgs, IEnumerable) Constructor

Initializes a new instance of the ItemsCollectionChangedEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v19.1.dll

Declaration

public ItemsCollectionChangedEventArgs(
    ItemType itemType,
    NotifyCollectionChangedEventArgs e,
    IEnumerable collection
)

Parameters

Name Type Description
itemType ItemType

An ItemType enumeration member that identifies the type of the items in the changed collection.

e NotifyCollectionChangedEventArgs

A NotifyCollectionChangedEventArgs object providing data for the base CollectionChanged event.

collection IEnumerable

A collection which is changed.

Remarks

Instances of the ItemsCollectionChangedEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also