IDTSDesigntimeComponent100.InsertOutputColumnAt 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.
Creates a new IDTSOutputColumn100 object and inserts it into the IDTSOutputColumnCollection100.
public:
Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSOutputColumn100 ^ InsertOutputColumnAt(int lOutputID, int lOutputColumnIndex, System::String ^ bstrName, System::String ^ bstrDescription);
[System.Runtime.InteropServices.DispId(13)]
public Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutputColumn100 InsertOutputColumnAt (int lOutputID, int lOutputColumnIndex, string bstrName, string bstrDescription);
[<System.Runtime.InteropServices.DispId(13)>]
abstract member InsertOutputColumnAt : int * int * string * string -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutputColumn100
Public Function InsertOutputColumnAt (lOutputID As Integer, lOutputColumnIndex As Integer, bstrName As String, bstrDescription As String) As IDTSOutputColumn100
Parameters
- lOutputID
- Int32
Specifies the IDTSOutput100 to add the column to.
- lOutputColumnIndex
- Int32
Specifies the location in the IDTSOutputColumnCollection100 to insert the new IDTSOutputColumn100.
- bstrName
- String
Specifies the value assigned to the Name property of the new IDTSOutputColumn100.
- bstrDescription
- String
Specifies the value assigned to the Description property of the new IDTSOutputColumn100.
Returns
The newly created IDTSOutputColumn100 object.
- Attributes
Remarks
This method creates a new IDTSOutputColumn100 object in the IDTSOutputColumnCollection100 specified by the lOutputColumnIndex
parameter.