[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.CopyTo

CopyTo Method

CopyTo(Array, int)

Copies the objects in the ReportItemCollection to an array, starting at the specified array index.

Declaration
public virtual void CopyTo(Array array, int index)
Parameters
Type Name Description
Array array

An one-dimensional array that is the destination of the objects copied from the ReportItemCollection. The array must have zero-based indexing.

int index

A zero-based int index in the array at which copying begins.

Implements

CopyTo(ReportItem[], int)

Copies the objects in the ReportItemCollection to a ReportItem array, starting at the specified array index.

Declaration
public virtual void CopyTo(ReportItem[] array, int index)
Parameters
Type Name Description
ReportItem[] array

An one-dimensional array of the ReportItem objects that is the destination of the elements copied from the ReportItemCollection. The array must have zero-based indexing.

int index

A zero-based int index in the array at which copying begins.

Implements