ActiveReports3 Request technical support
CopyTo Method
See Also 


fields
The array containing the copied fields.
index
The insertion index in the collection.
Copies fields from the collection to an array, starting at a particular array index.

Syntax

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

Parameters

fields
The array containing the copied fields.
index
The insertion index in the collection.

See Also