CManagedComponentWrapperClass.OnDeletingInputColumn(Int32, Int32) Method

Definition

Called when an IDTSInputColunn100 object is being deleted from an IDTSInputColumnCollection100 of the component.

public:
 virtual void OnDeletingInputColumn(int lInputID, int lInputColumnID) = Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSDesigntimeComponent100::OnDeletingInputColumn;
[System.Runtime.InteropServices.DispId(15)]
public virtual void OnDeletingInputColumn (int lInputID, int lInputColumnID);
[<System.Runtime.InteropServices.DispId(15)>]
abstract member OnDeletingInputColumn : int * int -> unit
override this.OnDeletingInputColumn : int * int -> unit
Public Overridable Sub OnDeletingInputColumn (lInputID As Integer, lInputColumnID As Integer)

Parameters

lInputID
Int32

The ID of the IDTSInput100 object.

lInputColumnID
Int32

The ID of the IDTSInputColumn100 object that is being deleted.

Implements

Attributes

Remarks

This method is called when an input column is being removed from an IDTSInput100 of the component. It should not be called directly by developers who are programmatically editing a component.

Applies to