[]
        
(Showing Draft Content)

GrapeCity.Wpf.SpreadSheet.CellType.Editors.NotifyCollection-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.

Exceptions
Type Condition
ArgumentNullException

When the value of value is null.

AddRange(IEnumerable<T>)

Adds the contents of another IList<T> to the end of the collection.

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

A IList<T> containing the objects to add to the collection.

Exceptions
Type Condition
ArgumentNullException

When the value of value is null.