CManagedComponentWrapperClass.InsertOutput(DTSInsertPlacement, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a new IDTSOutput100 object to the component.
public:
virtual Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSOutput100 ^ InsertOutput(Microsoft::SqlServer::Dts::Pipeline::Wrapper::DTSInsertPlacement eInsertPlacement, int lOutputID) = Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSDesigntimeComponent100::InsertOutput;
[System.Runtime.InteropServices.DispId(23)]
public virtual Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutput100 InsertOutput (Microsoft.SqlServer.Dts.Pipeline.Wrapper.DTSInsertPlacement eInsertPlacement, int lOutputID);
[<System.Runtime.InteropServices.DispId(23)>]
abstract member InsertOutput : Microsoft.SqlServer.Dts.Pipeline.Wrapper.DTSInsertPlacement * int -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutput100
override this.InsertOutput : Microsoft.SqlServer.Dts.Pipeline.Wrapper.DTSInsertPlacement * int -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutput100
Public Overridable Function InsertOutput (eInsertPlacement As DTSInsertPlacement, lOutputID As Integer) As IDTSOutput100
Parameters
- eInsertPlacement
- DTSInsertPlacement
Specifies whether to insert the new IDTSOutput100 object before or after the IDTSOutput100 object specified by outputID
parameter.
- lOutputID
- Int32
Specifies an existing IDTSOutput100 object that the new IDTSOutput100 is inserted next to.
Returns
The newly created IDTSOutput100 object
Implements
- Attributes
Remarks
Call this method to insert a new IDTSOutput100 object before or after the output object specified by the outputID
parameter.