DTSInsertPlacement Enum
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.
Specifies the location to insert a new IDTSInput100 or IDTSOutput100 object in the collection.
public enum class DTSInsertPlacement
public enum DTSInsertPlacement
type DTSInsertPlacement =
Public Enum DTSInsertPlacement
- Inheritance
-
DTSInsertPlacement
Fields
Name | Value | Description |
---|---|---|
IP_BEFORE | 0 | Specifies to insert the object before the specified input or output object. |
IP_AFTER | 1 | Specifies to insert the object after the specified input or output object. |
Remarks
This enumeration is used as the first parameter to the InsertInput and InsertOutput methods of the IDTSDesigntimeComponent100 interface. It specifies where in the collection to insert the new input or output object relative to the input or output specified in the second parameter.