Back to Devexpress

Dashboard.ParameterCollectionChanged Event

dashboard-devexpress-dot-dashboardcommon-dot-dashboard-e6d98250.md

latest2.5 KB
Original Source

Dashboard.ParameterCollectionChanged Event

Occurs after the collection of dashboard parameters has been changed.

Namespace : DevExpress.DashboardCommon

Assembly : DevExpress.Dashboard.v25.2.Core.dll

NuGet Package : DevExpress.Dashboard.Core

Declaration

csharp
public event EventHandler<NotifyingCollectionChangedEventArgs<DashboardParameter>> ParameterCollectionChanged
vb
Public Event ParameterCollectionChanged As EventHandler(Of NotifyingCollectionChangedEventArgs(Of DashboardParameter))

Event Data

The ParameterCollectionChanged event's data class is NotifyingCollectionChangedEventArgs<DashboardParameter>. The following properties provide information specific to this event:

PropertyDescription
AddedItemsGets items added to the NotifyingCollection<T>.
RemovedItemsGets items removed from the NotifyingCollection<T>.

Remarks

The ParameterCollectionChanged event is raised after dashboard parameters are added to or removed from the Dashboard.Parameters collection.

Use the event parameter’s NotifyingCollectionChangedEventArgs1.AddedItems](/Dashboard/DevExpress.DataAccess.NotifyingCollectionChangedEventArgs-1.AddedItems) and [NotifyingCollectionChangedEventArgs1.RemovedItems properties to determine which parameters have been added or removed respectively.

See Also

Dashboard Class

Dashboard Members

DevExpress.DashboardCommon Namespace