PipelineComponent::InsertOutputColumnAt Method (Int32, Int32, String^, String^)
Creates a new IDTSOutputColumn100 object and inserts it into the IDTSOutputColumnCollection100.
This API is not CLS-compliant.
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
public: [CLSCompliantAttribute(false)] virtual IDTSOutputColumn100^ InsertOutputColumnAt( int outputID, int outputColumnIndex, String^ name, String^ description )
Parameters
- outputID
-
Type:
System::Int32
Specifies the IDTSOutput100 object to add the column to.
- outputColumnIndex
-
Type:
System::Int32
Specifies the location in the IDTSOutputColumnCollection100 to insert the new IDTSOutputColumn100.
- name
-
Type:
System::String^
Specifies the value assigned to the Name property of the new IDTSOutputColumn100.
- description
-
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.
This method creates a new IDTSOutputColumn100 object in the IDTSOutputColumnCollection100 specified by the outputColumnIndex parameter by calling the NewAt method. The Name and Description properties of the new IDTSOutputColumn100 object are then set to the values specified by the name and description parameters.
The Advanced Editor lets users add IDTSOutputColumn100 objects to components. If this is not desirable for your component, you should override this method and throw an exception.