IDTSDesigntimeComponent100.InsertInput 메서드
Adds an IDTSInput100 object to the IDTSInputCollection100.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리: Microsoft.SqlServer.DTSPipelineWrap(Microsoft.SqlServer.DTSPipelineWrap.dll)
구문
‘선언
Function InsertInput ( _
eInsertPlacement As DTSInsertPlacement, _
lInputID As Integer _
) As IDTSInput100
‘사용 방법
Dim instance As IDTSDesigntimeComponent100
Dim eInsertPlacement As DTSInsertPlacement
Dim lInputID As Integer
Dim returnValue As IDTSInput100
returnValue = instance.InsertInput(eInsertPlacement, _
lInputID)
IDTSInput100 InsertInput(
DTSInsertPlacement eInsertPlacement,
int lInputID
)
IDTSInput100^ InsertInput(
[InAttribute] DTSInsertPlacement eInsertPlacement,
[InAttribute] int lInputID
)
abstract InsertInput :
eInsertPlacement:DTSInsertPlacement *
lInputID:int -> IDTSInput100
function InsertInput(
eInsertPlacement : DTSInsertPlacement,
lInputID : int
) : IDTSInput100
매개 변수
- eInsertPlacement
유형: Microsoft.SqlServer.Dts.Pipeline.Wrapper.DTSInsertPlacement
Specifies whether to insert the new IDTSInput100 object before or after the IDTSInput100 object specified by lInputID.
- lInputID
유형: System.Int32
Specifies an existing IDTSInput100 object that the new IDTSInput100 is inserted next to.
반환 값
유형: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSInput100
The IDTSInput100 that was added to the input collection.
주의
This method inserts a new IDTSInput100 object before or after the input object specified by the lInputID parameter in the NewAt method.
If inputID equals zero, the new IDTSInput100 object is added at the beginning of the collection.