共用方式為


ToolboxItemCollection.CopyTo(ToolboxItem[], Int32) 方法

定義

將集合複製到以指定目的索引開頭的指定陣列。

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)

參數

array
ToolboxItem[]

要複製到其中的陣列。

index
Int32

要開始進行複製的目的索引。

範例

下列程式代碼範例示範如何使用 CopyToToolboxItemCollection方法。

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

適用於