[]
        
(Showing Draft Content)

GrapeCity.Win.Spread.InputMan.CellType.CollectionBase-1.AddRange

AddRange Method

AddRange(T[])

Copies the elements of the specified array to the end of the collection.

Declaration
public virtual void AddRange(T[] value)
Public Overridable Sub AddRange(value As T())
Parameters
Type Name Description
T[] value

An array of type T containing the objects to add to the collection.

AddRange(IList<T>)

Adds the contents of another IList to the end of the collection.

Declaration
public void AddRange(IList<T> value)
Public Sub AddRange(value As IList(Of T))
Parameters
Type Name Description
IList<T> value

A IList containing the objects to add to the collection.

AddRange(CollectionBase<T>)

Adds the contents of another CollectionEx to the end of the collection.

Declaration
public void AddRange(CollectionBase<T> value)
Public Sub AddRange(value As CollectionBase(Of T))
Parameters
Type Name Description
CollectionBase<T> value

A CollectionEx containing the objects to add to the collection.