ToolboxItemCollection Konstruktor
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menginisialisasi instans baru kelas ToolboxItemCollection.
Overload
ToolboxItemCollection(ToolboxItem[]) |
Menginisialisasi instans ToolboxItemCollection baru kelas menggunakan array item kotak alat yang ditentukan. |
ToolboxItemCollection(ToolboxItemCollection) |
Menginisialisasi instans ToolboxItemCollection baru kelas menggunakan koleksi yang ditentukan. |
ToolboxItemCollection(ToolboxItem[])
Menginisialisasi instans ToolboxItemCollection baru kelas menggunakan array item kotak alat yang ditentukan.
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())
Parameter
- value
- ToolboxItem[]
Array jenis ToolboxItem yang berisi item kotak alat untuk mengisi koleksi.
Contoh
Contoh kode berikut menunjukkan pembuatan instans baru ToolboxItemCollection yang diinisialisasi menggunakan array ToolboxItem objek.
// 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))})
Berlaku untuk
ToolboxItemCollection(ToolboxItemCollection)
Menginisialisasi instans ToolboxItemCollection baru kelas menggunakan koleksi yang ditentukan.
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)
Parameter
- value
- ToolboxItemCollection
A ToolboxItemCollection untuk mengisi koleksi baru dengan.
Contoh
Contoh kode berikut menunjukkan pembuatan instans baru ToolboxItemCollection yang diinisialisasi menggunakan yang lain 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)