ToolboxItemCollection.CopyTo(ToolboxItem[], Int32) Metoda

Definicja

Kopiuje kolekcję do określonej tablicy rozpoczynającej się od określonego indeksu docelowego.

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)

Parametry

array
ToolboxItem[]

Tablica do skopiowania.

index
Int32

Indeks do rozpoczęcia kopiowania do.

Przykłady

Poniższy przykład kodu pokazuje użycie CopyTo metody .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)

Dotyczy