ReportElementCollectionBase<T>.Item 屬性
Gets the item at the specified index.
命名空間: Microsoft.ReportingServices.OnDemandReportRendering
組件: Microsoft.ReportingServices.ProcessingCore (在 Microsoft.ReportingServices.ProcessingCore.dll 中)
語法
'宣告
Public Overridable Default Property Item ( _
i As Integer _
) As T
Get
Set
'用途
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 支援索引屬性的使用,但不支援新屬性的宣告。
參數
- i
型別:System.Int32
The index of the item.
屬性值
型別:T
An object of type T that represents the item at the specified index.