Share via


ToolboxItemCollection.CopyTo(ToolboxItem[], Int32) Methode

Definition

Kopiert die Auflistung in das angegebene Array, beginnend am angegebenen Zielindex.

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)

Parameter

array
ToolboxItem[]

Das Array, in das kopiert werden soll.

index
Int32

Der Index, ab dem kopiert werden soll.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der CopyTo -Methode eines ToolboxItemCollectionveranschaulicht.

// 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)

Gilt für: