Class TimedObjectsCollectionChangedEventArgs<TObject>
Provides data for the CollectionChanged event.
Inherited Members
Namespace: Melanchall.DryWetMidi.Interaction
Assembly: Melanchall.DryWetMidi.dll
Syntax
public sealed class TimedObjectsCollectionChangedEventArgs<TObject> : EventArgs where TObject : ITimedObject
Type Parameters
Name | Description |
---|---|
TObject |
Properties
AddedObjects
Gets objects that were added to a TimedObjectsCollection<TObject>.
Declaration
public IEnumerable<TObject> AddedObjects { get; }
Property Value
Type | Description |
---|---|
IEnumerable<TObject> |
RemovedObjects
Gets objects that were removed from a TimedObjectsCollection<TObject>.
Declaration
public IEnumerable<TObject> RemovedObjects { get; }
Property Value
Type | Description |
---|---|
IEnumerable<TObject> |