IDTSComponentMetaData100.ComponentClassID Properti
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.
Mendapatkan atau mengatur CLSID komponen yang dijelaskan oleh metadata komponen.
public:
property System::String ^ ComponentClassID { System::String ^ get(); void set(System::String ^ value); };
[System.Runtime.InteropServices.DispId(101)]
public string ComponentClassID { [System.Runtime.InteropServices.DispId(101)] get; [System.Runtime.InteropServices.DispId(101)] set; }
[<System.Runtime.InteropServices.DispId(101)>]
[<get: System.Runtime.InteropServices.DispId(101)>]
[<set: System.Runtime.InteropServices.DispId(101)>]
member this.ComponentClassID : string with get, set
Public Property ComponentClassID As String
Nilai Properti
CLSID atau PROGID komponen yang diwakili oleh IDTSComponentMetaData100.
- Atribut
Contoh
Sampel kode berikut menunjukkan bagaimana properti ini digunakan saat menambahkan komponen secara terprogram ke tugas aliran data. Dalam contoh ini, komponen Pencarian ditambahkan.
IDTSComponentMetaData100 component = dataflowTask.ComponentMetaDataCollection.New();
component.ComponentClassID = "DTSTransform.Lookup";
component.Instantiate();
Dim component As IDTSComponentMetaData100 = dataflowTask.ComponentMetaDataCollection.New
component.ComponentClassID = "DTSTransform.Lookup"
component.Instantiate
Keterangan
Properti ini menunjukkan jenis komponen yang dibuat saat Instantiate metode dipanggil.