ToolboxItemCollection コンストラクター

定義

ToolboxItemCollection クラスの新しいインスタンスを初期化します。

オーバーロード

ToolboxItemCollection(ToolboxItem[])

指定したツールボックス項目の配列を使用して、ToolboxItemCollection クラスの新しいインスタンスを初期化します。

ToolboxItemCollection(ToolboxItemCollection)

指定したコレクションを使用して、ToolboxItemCollection クラスの新しいインスタンスを初期化します。

ToolboxItemCollection(ToolboxItem[])

指定したツールボックス項目の配列を使用して、ToolboxItemCollection クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemCollection(cli::array <System::Drawing::Design::ToolboxItem ^> ^ value);
public ToolboxItemCollection (System.Drawing.Design.ToolboxItem[] value);
new System.Drawing.Design.ToolboxItemCollection : System.Drawing.Design.ToolboxItem[] -> System.Drawing.Design.ToolboxItemCollection
Public Sub New (value As ToolboxItem())

パラメーター

value
ToolboxItem[]

コレクションに格納するツールボックス項目を格納している ToolboxItem 型の配列。

次のコード例では、オブジェクトの配列を使用して初期化された新しい ToolboxItemCollection インスタンスを ToolboxItem 作成する方法を示します。

// Create a new ToolboxItemCollection using a ToolboxItem array.
array<ToolboxItem^>^temp0 = {gcnew ToolboxItem( System::Windows::Forms::Label::typeid ),gcnew ToolboxItem( System::Windows::Forms::TextBox::typeid )};
ToolboxItemCollection^ collection = gcnew ToolboxItemCollection( temp0 );
// Create a new ToolboxItemCollection using a ToolboxItem array.
ToolboxItemCollection collection = 
    new ToolboxItemCollection( new ToolboxItem[] { 
        new ToolboxItem(typeof(System.Windows.Forms.Label)),
        new ToolboxItem(typeof(System.Windows.Forms.TextBox)) } );
' Create a new ToolboxItemCollection using a ToolboxItem array.
Dim collection As New ToolboxItemCollection(New ToolboxItem() _
 {New ToolboxItem(GetType(System.Windows.Forms.Label)), _
  New ToolboxItem(GetType(System.Windows.Forms.TextBox))})

適用対象

ToolboxItemCollection(ToolboxItemCollection)

指定したコレクションを使用して、ToolboxItemCollection クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemCollection(System::Drawing::Design::ToolboxItemCollection ^ value);
public ToolboxItemCollection (System.Drawing.Design.ToolboxItemCollection value);
new System.Drawing.Design.ToolboxItemCollection : System.Drawing.Design.ToolboxItemCollection -> System.Drawing.Design.ToolboxItemCollection
Public Sub New (value As ToolboxItemCollection)

パラメーター

value
ToolboxItemCollection

新しいコレクションに格納する ToolboxItemCollection

次のコード例では、別ToolboxItemCollectionの を使用して初期化された新しいToolboxItemCollectionインスタンスを作成する方法を示します。

// Create a new ToolboxItemCollection using an existing ToolboxItemCollection.
ToolboxItemCollection^ coll = gcnew ToolboxItemCollection( collection );
// Create a new ToolboxItemCollection using an existing ToolboxItemCollection.
ToolboxItemCollection coll =
    new ToolboxItemCollection( collection );
' Creates a new ToolboxItemCollection using an existing ToolboxItemCollection.
Dim coll As New ToolboxItemCollection(collection)

適用対象