[]
        
(Showing Draft Content)

GrapeCity.Win.Spread.InputMan.CellType.MatchedListItemCollectionInfo.CopyTo

CopyTo Method

CopyTo(Array, int)

Copies the elements of the ICollection to an Array, starting at a particular Array index.

Declaration
public void CopyTo(Array array, int index)
Public Sub CopyTo(array As Array, index As Integer)
Parameters
Type Name Description
Array array

The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.

int index

The zero-based index in array at which copying begins.

Implements
Exceptions
Type Condition
ArgumentNullException

The array is null.

ArgumentOutOfRangeException

The index is less than zero.

ArgumentException

The array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source ICollection is greater than the available space from index to the end of the destination array.

InvalidCastException

The type of the source ICollection cannot be cast automatically to the type of the destination array.