CManagedComponentWrapperClass.InsertOutputColumnAt Method (Int32, Int32, String, String)

 

Applies To: SQL Server 2016 Preview

Creates a new IDTSOutputColumn100 object and inserts it into the IDTSOutputColumnCollection100 of the component.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(13)]
public virtual IDTSOutputColumn100 InsertOutputColumnAt(
    int lOutputID,
    int lOutputColumnIndex,
    string bstrName,
    string bstrDescription
)
public:
[DispIdAttribute(13)]
virtual IDTSOutputColumn100^ InsertOutputColumnAt(
    int lOutputID,
    int lOutputColumnIndex,
    String^ bstrName,
    String^ bstrDescription
)
[<DispIdAttribute(13)>]
abstract InsertOutputColumnAt : 
        lOutputID:int *
        lOutputColumnIndex:int *
        bstrName:string *
        bstrDescription:string -> IDTSOutputColumn100
[<DispIdAttribute(13)>]
override InsertOutputColumnAt : 
        lOutputID:int *
        lOutputColumnIndex:int *
        bstrName:string *
        bstrDescription:string -> IDTSOutputColumn100
<DispIdAttribute(13)>
Public Overridable Function InsertOutputColumnAt (
    lOutputID As Integer,
    lOutputColumnIndex As Integer,
    bstrName As String,
    bstrDescription As String
) As IDTSOutputColumn100

Parameters

Return Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutputColumn100

The newly created IDTSOutputColumn100 object.

Implements

IDTSDesigntimeComponent100.InsertOutputColumnAt(Int32, Int32, String, String)

Remarks

Call this method to create a new IDTSOutputColumn100 object in the IDTSOutputColumnCollection100 specified by the lOutputColumnIndex parameter. The Name and Description properties of the new IDTSOutputColumn100 are initialized to the values specified by the bstrName and bstrDescription parameters.

See Also

CManagedComponentWrapperClass Class
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top