FilterCollectionTAddRange Method |
Adds the specified items to the collection.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic void AddRange(
IEnumerable<T> items
)
Public Sub AddRange (
items As IEnumerable(Of T)
)
member AddRange :
items : IEnumerable<'T> -> unit
Parameters
- 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