RdlCollectionBase<T>.InsertItem Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Inserts an element into the collection at the specified index.
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 zero-based index at which item should be inserted.
- item
Type: T
The object to insert. The value can be null for reference types.