Skip to main content

DataLoadingEventArgs.Parameters Property

Provides access to parameter values passed to the object data source.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

Declaration

public IEnumerable<IParameter> Parameters { get; }

Property Value

Type Description
IEnumerable<IParameter>

A collection of IParameter objects that are parameters passed to the object data source.

Remarks

Use the IParameter.Value property to access a value of the specified parameter. Note the Parameters property provides read-only access to the parameter values in the DataLoading event handlers.

In this case, changing the IParameter.Value property value has no effect.

See Also