IDtsComponentUI Interface
Defines the methods called by SSIS Designer for the user interface of a data flow component.
This API is not CLS-compliant.
Assembly: Microsoft.SqlServer.Dts.Design (in Microsoft.SqlServer.Dts.Design.dll)
| Name | Description | |
|---|---|---|
![]() | Delete(IWin32Window^) | Called when the component is deleted from the SSIS Designer surface. |
![]() | Edit(IWin32Window^, Variables^, Connections^) | Called when a component is edited. |
![]() | Help(IWin32Window^) | [Reserved for future use.] |
![]() | Initialize(IDTSComponentMetaData100^, IServiceProvider^) | Called to initialize the user interface of the component. |
![]() | New(IWin32Window^) | Called when a component is initially added to a Data Flow task. |
Component developers can provide a user interface for a data flow component by specifying a Type and implementing this interface in the UITypeName property of the DtsPipelineComponentAttribute attribute. The designer calls the methods of this interface when the component is added, deleted, and edited inside the SSIS Designer.
The following code sample demonstrates a class that implements the T:Microsoft.SqlServer.Dts.Pipeline.Design.IdtsComponentUI interface. For more information and the complete sample, see Developing a User Interface for a Data Flow Component.
