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

ParameterCollection.Item[String] Property

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

Namespace: DevExpress.XtraReports.Parameters

Assembly: DevExpress.Printing.v20.2.Core.dll

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

Declaration

public Parameter this[string parameterName] { get; }

Parameters

Name Type Description
parameterName String

A String value specifying the name of the parameter to get.

Property Value

Type Description
Parameter

A Parameter object which represents the 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 such parameter is found, the indexer returns null (Nothing in Visual Basic).

See Also