次の方法で共有


DesignerVerbCollection.CopyTo メソッド

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

Public Sub CopyTo( _
   ByVal array() As DesignerVerb, _   ByVal index As Integer _)
[C#]
public void CopyTo(DesignerVerb[] array,intindex);
[C++]
public: void CopyTo(DesignerVerb* array[],intindex);
[JScript]
public function CopyTo(
   array : DesignerVerb[],index : int);

パラメータ

  • array
    コレクション メンバのコピー先の配列。
  • index
    コピーの開始位置を示す、コピー先の配列内のインデックス。

使用例

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

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

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

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

DesignerVerbCollection クラス | DesignerVerbCollection メンバ | System.ComponentModel.Design 名前空間