ActiveReports.Chart Request technical support
CopyTo Method
See Also 


array
The array to which to copy the collection.
index
The index from which to start copying.
Copies the entire collection to an array, starting at the specified index of the target array.

Syntax

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

Parameters

array
The array to which to copy the collection.
index
The index from which to start copying.

See Also