ToolboxItemCollection.CopyTo(ToolboxItem[], Int32) Methode

Definitie

Kopieert de verzameling naar de opgegeven matrix die begint met de opgegeven doelindex.

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

Parameters

array
ToolboxItem[]

De matrix naar kopiëren.

index
Int32

De index waarmee u begint te kopiëren.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de CopyTo methode van een ToolboxItemCollection.

// Copy the ToolboxItemCollection to the specified array.
array<ToolboxItem^>^items = gcnew array<ToolboxItem^>(collection->Count);
collection->CopyTo( items, 0 );
// Copy the ToolboxItemCollection to the specified array.
ToolboxItem[] items = new ToolboxItem[collection.Count];
collection.CopyTo( items, 0 );
' Copy the ToolboxItemCollection to the specified array.
Dim items(collection.Count) As ToolboxItem
collection.CopyTo(items, 0)

Van toepassing op