Propriedade Item
Gets the item at the specified index.
Namespace: Microsoft.ReportingServices.OnDemandReportRendering
Assembly: Microsoft.ReportingServices.ProcessingCore (em Microsoft.ReportingServices.ProcessingCore.dll)
Sintaxe
'Declaração
Public Overridable Default Property Item ( _
i As Integer _
) As T
Get
Set
'Uso
Dim instance As ReportElementCollectionBase
Dim i As Integer
Dim value As T
value = instance(i)
instance(i) = value
public virtual T this[
int i
] { get; set; }
public:
virtual property T default[int i] {
T get (int i);
void set (int i, T value);
}
abstract Item : 'T with get, set
override Item : 'T with get, set
JScript dá suporte ao uso de propriedades indexadas, mas não à declaração de propriedades novas.
Parâmetros
- i
Tipo: System. . :: . .Int32
The index of the item.
Valor da propriedade
Tipo: T
An object of type T.