ReportParameterCollection.Item[] Property

Definition

Gets an item in the collection.

Overloads

Item[Int32]

Gets the item at the specified index.

Item[String]

Gets the ReportParameter that has the specified name.

Item[Int32]

Gets the item at the specified index.

public:
 virtual property Microsoft::ReportingServices::OnDemandReportRendering::ReportParameter ^ default[int] { Microsoft::ReportingServices::OnDemandReportRendering::ReportParameter ^ get(int index); };
public override Microsoft.ReportingServices.OnDemandReportRendering.ReportParameter this[int index] { get; }
member this.Item(int) : Microsoft.ReportingServices.OnDemandReportRendering.ReportParameter
Default Public Overrides ReadOnly Property Item(index As Integer) As ReportParameter

Parameters

index
Int32

The index of the item.

Property Value

A ReportParameter object at the specified index.

Applies to

Item[String]

Gets the ReportParameter that has the specified name.

public:
 property Microsoft::ReportingServices::OnDemandReportRendering::ReportParameter ^ default[System::String ^] { Microsoft::ReportingServices::OnDemandReportRendering::ReportParameter ^ get(System::String ^ name); };
public Microsoft.ReportingServices.OnDemandReportRendering.ReportParameter this[string name] { get; }
member this.Item(string) : Microsoft.ReportingServices.OnDemandReportRendering.ReportParameter
Default Public ReadOnly Property Item(name As String) As ReportParameter

Parameters

name
String

The name of the item.

Property Value

A ReportParameter object that has the specified name.

Applies to