RdlCollection<T>.InsertItem Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Inserts an item in the collection.
Namespace: Microsoft.ReportingServices.RdlObjectModel
Assembly: Microsoft.ReportingServices.Designer.Controls (in Microsoft.ReportingServices.Designer.Controls.dll)
Syntax
'Declaration
Protected Overrides Sub InsertItem ( _
index As Integer, _
item As T _
)
'Usage
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
)
Parameters
- index
Type: System.Int32
The location where the item will be inserted.
- item
Type: T
The item to insert.