DTSObjectType 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 objects that implement the IDTSObject100 interface in the data flow object model.
public enum class DTSObjectType
public enum DTSObjectType
type DTSObjectType =
Public Enum DTSObjectType
- Inheritance
-
DTSObjectType
Fields
Name | Value | Description |
---|---|---|
OT_UNSPECIFIED | 0 | Specifies that the object type was unknown to the data flow engine. |
OT_SOURCEADAPTER | 1 | Specifies that an object is a source component that has one or more IDTSOutput100 objects and zero IDTSInput100 objects. |
OT_DESTINATIONADAPTER | 2 | Specifies that an object is a destination component having one or more IDTSInput100 objects and zero IDTSOutput100 objects. |
OT_TRANSFORM | 4 | Specifies that an object is a transform component that has one or more IDTSOutput100 objects and one or more IDTSInput100 objects. |
OT_COMPONENT | 8 | Specifies an object as a data flow component that implements the IDTSDesigntimeComponent100 and IDTSRuntimeComponent100 interfaces. |
OT_COMPONENTVIEWER | 16 | Specifies that an object is an IDTSComponentView100 object. |
OT_PATH | 32 | Specifies that an object is an IDTSPath100 object. |
OT_INPUT | 64 | Specifies that an object is an IDTSInput100 object. |
OT_VIRTUALINPUT | 128 | Specifies that an object is an IDTSVirtualInput100 object. |
OT_OUTPUT | 256 | Specifies that an object is an IDTSOutput100 object. |
OT_INPUTCOLUMN | 512 | Specifies that an object is an IDTSInputColumn100 object. |
OT_OUTPUTCOLUMN | 1024 | Specifies that an object is an IDTSOutputColumn100 object. |
OT_VIRTUALINPUTCOLUMN | 2048 | Specifies that an object is an IDTSVirtualInputColumn100 object. |
OT_PROPERTY | 4096 | Specifies that an object is an IDTSCustomProperty100 object. |
OT_RUNTIMECONNECTION | 8192 | Specifies that an object is an IDTSRuntimeConnection100 object. |
OT_EXTERNALMETADATACOLUMN | 16384 | Specifies that an object is an IDTSExternalMetadataColumn100 object. |
Remarks
This enumeration contains the objects in the data flow object model that implement the IDTSObject100 interface.