DesignerVerbCollection.CopyTo(DesignerVerb[], Int32) メソッド

定義

指定したインデックスを開始位置として、指定した DesignerVerb 配列にコレクション メンバーをコピーします。

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

パラメーター

array
DesignerVerb[]

コレクション メンバーのコピー先の配列。

index
Int32

コピーの開始位置を示す、コピー先の配列内のインデックス。

次のコード例は、オブジェクトの DesignerVerb コレクションを配列にコピーする方法を示しています。

// Copies the contents of the collection, beginning at index 0,
// to the specified DesignerVerb array.
// 'verbs' is a DesignerVerb array.
collection->CopyTo( verbs, 0 );
// Copies the contents of the collection, beginning at index 0, 
// to the specified DesignerVerb array.
// 'verbs' is a DesignerVerb array.
collection.CopyTo( verbs, 0 );
' Copies the contents of the collection, beginning at index 0, 
' to the specified DesignerVerb array.
' 'verbs' is a DesignerVerb array.
collection.CopyTo(verbs, 0)

適用対象