CustomPropertyCollection.Item[] Property

Definition

Gets an item in the collection.

Overloads

Item[Int32]

Gets the item at the specified index.

Item[String]

Gets the item that has the specified name.

Item[Int32]

Gets the item at the specified index.

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

Parameters

index
Int32

The index of the item.

Property Value

A CustomProperty object at the specified index.

Applies to

Item[String]

Gets the item that has the specified name.

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

Parameters

name
String

The name of the item in the collection.

Property Value

A CustomProperty object that has the specified name.

Applies to