ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportComponentCollection Class / CopyTo Method
The one-dimensional System.Array that is the destination of the elements copied from the collection.
An System.Int32 value indicating the zero-based index in the array at which copying begins.

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

    Parameters

    array
    The one-dimensional System.Array that is the destination of the elements copied from the collection.
    index
    An System.Int32 value indicating the zero-based index in the array at which copying begins.
    Exceptions
    ExceptionDescription
    Throws if array is null.
    See Also