ActiveReports.Viewer3 Request technical support
CopyTo Method
See Also 


values
The one-dimensional array that is the destination of the Page elements copied from the collection.
index
The zero-based index in the array at which copying begins.

Copies pages from the collection to an array, starting at a particular array index.

Syntax

Visual Basic (Declaration) 
Public Sub CopyTo( _
   ByVal values() As Page, _
   ByVal index As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As PagesCollection
Dim values() As Page
Dim index As Integer
 
instance.CopyTo(values, index)
C# 
public void CopyTo( 
   Page[] values,
   int index
)

Parameters

values
The one-dimensional array that is the destination of the Page elements copied from the collection.
index
The zero-based index in the array at which copying begins.

See Also