Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Creates a new IDTSOutputColumn100 object and inserts it into the IDTSOutputColumnCollection100.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Syntax
'Declaration
Function InsertOutputColumnAt ( _
lOutputID As Integer, _
lOutputColumnIndex As Integer, _
bstrName As String, _
bstrDescription As String _
) As IDTSOutputColumn100
'Usage
Dim instance As IDTSDesigntimeComponent100
Dim lOutputID As Integer
Dim lOutputColumnIndex As Integer
Dim bstrName As String
Dim bstrDescription As String
Dim returnValue As IDTSOutputColumn100
returnValue = instance.InsertOutputColumnAt(lOutputID, _
lOutputColumnIndex, bstrName, bstrDescription)
IDTSOutputColumn100 InsertOutputColumnAt(
int lOutputID,
int lOutputColumnIndex,
string bstrName,
string bstrDescription
)
IDTSOutputColumn100^ InsertOutputColumnAt(
[InAttribute] int lOutputID,
[InAttribute] int lOutputColumnIndex,
[InAttribute] String^ bstrName,
[InAttribute] String^ bstrDescription
)
abstract InsertOutputColumnAt :
lOutputID:int *
lOutputColumnIndex:int *
bstrName:string *
bstrDescription:string -> IDTSOutputColumn100
function InsertOutputColumnAt(
lOutputID : int,
lOutputColumnIndex : int,
bstrName : String,
bstrDescription : String
) : IDTSOutputColumn100
Parameters
- lOutputID
Type: System.Int32
Specifies the IDTSOutput100 to add the column to.
- lOutputColumnIndex
Type: System.Int32
Specifies the location in the IDTSOutputColumnCollection100 to insert the new IDTSOutputColumn100.
- bstrName
Type: System.String
Specifies the value assigned to the Name property of the new IDTSOutputColumn100.
- bstrDescription
Type: System.String
Specifies the value assigned to the Description property of the new IDTSOutputColumn100.
Return Value
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutputColumn100
The newly created IDTSOutputColumn100 object.
Remarks
This method creates a new IDTSOutputColumn100 object in the IDTSOutputColumnCollection100 specified by the lOutputColumnIndex parameter.