VectorCollection.CopyTo(Vector[], Int32) Method

Definition

Copies the items of the VectorCollection to an array, starting at the specified array index.

public:
 virtual void CopyTo(cli::array <System::Windows::Vector> ^ array, int index);
public void CopyTo (System.Windows.Vector[] array, int index);
abstract member CopyTo : System.Windows.Vector[] * int -> unit
override this.CopyTo : System.Windows.Vector[] * int -> unit
Public Sub CopyTo (array As Vector(), index As Integer)

Parameters

array
Vector[]

The one-dimensional array that is the destination of the items copied from the VectorCollection. The array must have zero-based indexing.

index
Int32

The zero-based index in array at which copying begins.

Implements

Exceptions

array is null.

index is less than zero.

array is multidimensional.

-or-

The number of items in the source VectorCollection is greater than the available space from index to the end of the destination array.

Applies to

See also