DataValueCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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::DataValue ^ default[int] { Microsoft::ReportingServices::OnDemandReportRendering::DataValue ^ get(int index); };
public override Microsoft.ReportingServices.OnDemandReportRendering.DataValue this[int index] { get; }
member this.Item(int) : Microsoft.ReportingServices.OnDemandReportRendering.DataValue
Default Public Overrides ReadOnly Property Item(index As Integer) As DataValue
Parameters
- index
- Int32
The index of the item.
Property Value
A DataValue object at the specified index.
Applies to
Item[String]
Gets the item that has the specified name.
public:
property Microsoft::ReportingServices::OnDemandReportRendering::DataValue ^ default[System::String ^] { Microsoft::ReportingServices::OnDemandReportRendering::DataValue ^ get(System::String ^ name); };
public Microsoft.ReportingServices.OnDemandReportRendering.DataValue this[string name] { get; }
member this.Item(string) : Microsoft.ReportingServices.OnDemandReportRendering.DataValue
Default Public ReadOnly Property Item(name As String) As DataValue
Parameters
- name
- String
The name of the item in the collection.
Property Value
A DataValue object that has the specified name.