Propriedade do RDL Item
Returns a data cell at the specified row and column.
Namespace: Microsoft.ReportingServices.ReportRendering
Assembly: Microsoft.ReportingServices.ProcessingCore (em Microsoft.ReportingServices.ProcessingCore.dll)
Sintaxe
'Declaração
Public ReadOnly Default Property Item ( _
row As Integer, _
column As Integer _
) As DataCell
Get
'Uso
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 dá suporte ao uso de propriedades indexadas, mas não à declaração de propriedades novas.
Parâmetros
- row
Tipo: System. . :: . .Int32
The row number of the data cell to retrieve.
- column
Tipo: System. . :: . .Int32
The column number of the data cell to retrieve.
Valor da propriedade
Tipo: Microsoft.ReportingServices.ReportRendering. . :: . .DataCell
A DataCell object.
Consulte também