IDTSOutputColumnCollection100 Interface

Contains a collection of IDTSOutputColumn100 columns.

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

Syntax

'Declaration
<GuidAttribute("BC942FEC-2CEA-4665-A291-38200A0C959F")> _
Public Interface IDTSOutputColumnCollection100 _
    Inherits IEnumerable
'Usage
Dim instance As IDTSOutputColumnCollection100
[GuidAttribute("BC942FEC-2CEA-4665-A291-38200A0C959F")]
public interface IDTSOutputColumnCollection100 : IEnumerable
[GuidAttribute(L"BC942FEC-2CEA-4665-A291-38200A0C959F")]
public interface class IDTSOutputColumnCollection100 : IEnumerable
[<GuidAttribute("BC942FEC-2CEA-4665-A291-38200A0C959F")>]
type IDTSOutputColumnCollection100 =  
    interface 
        interface IEnumerable 
    end
public interface IDTSOutputColumnCollection100 extends IEnumerable

The IDTSOutputColumnCollection100 type exposes the following members.

Properties

  Name Description
Public property Count Gets the number of IDTSOutput100 columns in the collection.
Public property Item Gets the IDTSOutputColumn100 specified by the Index parameter.

Top

Methods

  Name Description
Public method FindObjectByID Locates the requested object in a collection by its ID.
Public method FindObjectIndexByID Locates the index of the requested object in the collection by its ID.
Public method GetEnumerator Returns an enumerator that can iterate through an output column collection.
Public method GetObjectByID Retrieves the output column object that has the specified ID from a collection.
Public method GetObjectIndexByID Retrieves the location of an output column in a collection.
Public method GetOutputColumnByLineageID Retrieves an output column object with the specified lineage ID from a collection.
Public method New Creates an output column object and adds it to a collection.
Public method NewAt Creates a new output column object and adds it to a collection at the specified index.
Public method RemoveAll Deletes all the output column objects from a collection.
Public method RemoveObjectByID Deletes the output column object with the specified ID from a collection.
Public method RemoveObjectByIndex Removes the IDTSOutputColumn100 object at the specified location in a collection.
Public method SetIndex Moves an output column to a new location in a collection.

Top

Remarks

The IDTSOutputColumnCollection100 contains a collection of IDTSOutputColumn100 objects. The columns in this collection represent the columns that a component makes available to downstream components.

The component that contains the collection can be a source component, which means that it adds the columns based on an external data source, or it can be a transformation, which means that it creates columns based on the columns it receives in its IDTSInput100.

See Also

Reference

Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace