Class ObservableTimedObjectsCollectionChangedEventArgs
Holds information about changes within a collection for CollectionChanged event.
Inherited Members
Namespace: Melanchall.DryWetMidi.Interaction
Assembly: Melanchall.DryWetMidi.dll
Syntax
public sealed class ObservableTimedObjectsCollectionChangedEventArgs : EventArgs
Properties
AddedObjects
Gets or sets a collection of added objects.
Declaration
public ICollection<ITimedObject> AddedObjects { get; set; }
Property Value
Type | Description |
---|---|
ICollection<ITimedObject> |
ChangedObjects
Gets or sets a collection of changed objects.
Declaration
public ICollection<ChangedTimedObject> ChangedObjects { get; set; }
Property Value
Type | Description |
---|---|
ICollection<ChangedTimedObject> |
RemovedObjects
Gets or sets a collection of removed objects.
Declaration
public ICollection<ITimedObject> RemovedObjects { get; set; }
Property Value
Type | Description |
---|---|
ICollection<ITimedObject> |