IDtsComponentUI.Initialize Method
Called to initialize the user interface of the component. This method is not CLS-compliant.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Design
Assembly: Microsoft.SqlServer.Dts.Design (in microsoft.sqlserver.dts.design.dll)
Syntax
'Deklaracja
Sub Initialize ( _
dtsComponentMetadata As IDTSComponentMetaData100, _
serviceProvider As IServiceProvider _
)
void Initialize (
IDTSComponentMetaData100 dtsComponentMetadata,
IServiceProvider serviceProvider
)
void Initialize (
IDTSComponentMetaData100^ dtsComponentMetadata,
IServiceProvider^ serviceProvider
)
void Initialize (
IDTSComponentMetaData100 dtsComponentMetadata,
IServiceProvider serviceProvider
)
function Initialize (
dtsComponentMetadata : IDTSComponentMetaData100,
serviceProvider : IServiceProvider
)
Parameters
- dtsComponentMetadata
The IDTSComponentMetaData100 of the component.
- serviceProvider
The IServiceProvider interface provided by the SSIS designer.
Remarks
This method is called when a component is initially added to the SSIS Designer surface, and prior to the New method. It is also called when a component is edited, but prior to the Edit method.
Cache the object reference received in the dtsComponentMetadata parameter and use it in the Edit method to make changes to your component as the user interacts with your user interface. Typically, you must also pass this object reference to any supporting classes that you may create, such as a form class, to implement editing functionality for a component.
The serviceProvider parameter provides access to the services of the SSIS Designer. The following table shows the available services in the SSIS Designer.
Service |
Description |
Determines whether the component was generated as part of a copy/paste or cut/paste operation. |
|
Accesses existing and creates new connections in the package. |
|
Provides methods that let Integration Services developers invoke the Expression Builder dialog box programmatically. |
|
Gives data flow components access to the parent Data Flow task and its TaskHost container. |
|
Accesses existing or creates new variables in the package. |
|
Captures events from data flow components when you have to capture all the errors and warnings raised by the component instead of receiving only the last error or warning. |
These services provide component developers the ability to access and create objects in the package in which the component is loaded.
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.