ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / DataGridCellsRangeCollection Class / CopyTo Method
The one-dimensional System.Array that is the destination of the elements copied from ICollection. The System.Array must have zero-based indexing.
The zero-based index in array at which copying begins.

In This Topic
    CopyTo Method
    In This Topic
    Copies the elements of the ICollection to an System.Array, starting at a particular System.Array index.
    Syntax
    'Declaration
     
    
    Public Sub CopyTo( _
       ByVal array() As DataGridCellsRange, _
       ByVal arrayIndex As Integer _
    ) 
    public void CopyTo( 
       DataGridCellsRange[] array,
       int arrayIndex
    )

    Parameters

    array
    The one-dimensional System.Array that is the destination of the elements copied from ICollection. The System.Array must have zero-based indexing.
    arrayIndex
    The zero-based index in array at which copying begins.
    Exceptions
    ExceptionDescription
    array is null.
    arrayIndex is less than 0.
    array is multidimensional.-or-The number of elements in the source ICollection is greater than the available space from arrayIndex to the end of the destination array.-or-Type cannot be cast automatically to the type of the destination array.
    See Also