DrawingCollection.CopyTo(Drawing[], Int32) Method

Definition

Copies the items of this DrawingCollection, starting with the specified index value, into an array of Drawing objects.

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

Parameters

array
Drawing[]

The array that is the destination of the items copied from this DrawingCollection.

index
Int32

The index 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 DrawingCollection is greater than the available space from index to the end of the destination array.

Applies to

See also