DataCellCollection.Item Property
Returns a data cell at the specified row and column.
Namespace: Microsoft.ReportingServices.ReportRendering
Assembly: Microsoft.ReportingServices.ProcessingCore (in Microsoft.ReportingServices.ProcessingCore.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
row As Integer, _
column As Integer _
) As DataCell
Get
'Usage
Dim instance As DataCellCollection
Dim row As Integer
Dim column As Integer
Dim value As DataCell
value = instance(row, column)
public DataCell this[
int row,
int column
] { get; }
public:
property DataCell^ default[int row, int column] {
DataCell^ get (int row, int column);
}
member Item : DataCell
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- row
Type: System.Int32
The row number of the data cell to retrieve.
- column
Type: System.Int32
The column number of the data cell to retrieve.
Property Value
Type: Microsoft.ReportingServices.ReportRendering.DataCell
A DataCell object.