Metodo RdlCollectionBase<T>.InsertItem
Questa API supporta l'infrastruttura SQL Server 2012 e non può essere utilizzata direttamente dal codice.
Inserts an element into the collection at the specified index.
Spazio dei nomi Microsoft.ReportingServices.RdlObjectModel
Assembly: Microsoft.ReportingServices.Designer.Controls (in Microsoft.ReportingServices.Designer.Controls.dll)
Sintassi
'Dichiarazione
Protected Overrides Sub InsertItem ( _
index As Integer, _
item As T _
)
'Utilizzo
Dim index As Integer
Dim item As T
Me.InsertItem(index, item)
protected override void InsertItem(
int index,
T item
)
protected:
virtual void InsertItem(
int index,
T item
) override
abstract InsertItem :
index:int *
item:'T -> unit
override InsertItem :
index:int *
item:'T -> unit
protected override function InsertItem(
index : int,
item : T
)
Parametri
- index
Tipo: System.Int32
The zero-based index at which item should be inserted.
- item
Tipo: T
The object to insert. The value can be null for reference types.