Dashboard.ParameterCollectionChanged Event
Occurs after the collection of dashboard parameters has been changed.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.2.Core.dll
NuGet Package: DevExpress.Dashboard.Core
#Declaration
public event EventHandler<NotifyingCollectionChangedEventArgs<DashboardParameter>> ParameterCollectionChanged
#Event Data
The ParameterCollectionChanged event's data class is NotifyingCollectionChangedEventArgs<DashboardParameter>. The following properties provide information specific to this event:
Property | Description |
---|---|
Added |
Gets items added to the Notifying |
Removed |
Gets items removed from the Notifying |
#Remarks
The ParameterCollectionChanged event is raised after dashboard parameters are added to or removed from the Dashboard.Parameters collection.
Use the event parameter’s NotifyingCollectionChangedEventArgs`1.AddedItems and NotifyingCollectionChangedEventArgs`1.RemovedItems properties to determine which parameters have been added or removed respectively.