FilterCollectionTInsertRange Method |
Inserts the items to the collection at the specified index.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic void InsertRange(
int index,
IEnumerable<T> items
)
Public Sub InsertRange (
index As Integer,
items As IEnumerable(Of T)
)
member InsertRange :
index : int *
items : IEnumerable<'T> -> unit
Parameters
- index
- Type: SystemInt32
Index to start adding the items. - items
- Type: System.Collections.GenericIEnumerableT
Items to add to the collection.
Remarks
Any item that does not match the existing
Filter will be only added to the underlying collection
and not be visible in the filtered collection.
See Also