Skip to main content
A newer version of this page is available. .

XRControlParameterCollection.Item[String] Property

Provides access to individual items in the collection by their names.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.2.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Reporting.Core

Declaration

public XRControlParameter this[string parameterName] { get; }

Parameters

Name Type Description
parameterName String

The name of a parameter to get.

Property Value

Type Description
XRControlParameter

A parameter with the specified name.

Remarks

This property searches the collection for the parameter whose name matches the specified value, and returns this parameter. If no parameter is found, the indexer returns null (Nothing in Visual Basic).

See Also