PipelineComponent.SetInputColumnProperty(Int32, Int32, String, Object) Method

Definition

Important

This API is not CLS-compliant.

Assigns a value to the IDTSCustomProperty100 of an IDTSInputColumn100 object.

public:
 virtual Microsoft::SqlServer::Dts::Pipeline::Wrapper::IDTSCustomProperty100 ^ SetInputColumnProperty(int inputID, int inputColumnID, System::String ^ propertyName, System::Object ^ propertyValue);
[System.CLSCompliant(false)]
public virtual Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100 SetInputColumnProperty (int inputID, int inputColumnID, string propertyName, object propertyValue);
[<System.CLSCompliant(false)>]
abstract member SetInputColumnProperty : int * int * string * obj -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100
override this.SetInputColumnProperty : int * int * string * obj -> Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100
Public Overridable Function SetInputColumnProperty (inputID As Integer, inputColumnID As Integer, propertyName As String, propertyValue As Object) As IDTSCustomProperty100

Parameters

inputID
Int32

The ID of the IDTSInput100 object that contains the IDTSInputColumn100.

inputColumnID
Int32

The ID of the IDTSInputColumn100 object whose IDTSCustomProperty100 is being set.

propertyName
String

The name of the IDTSCustomProperty100 object.

propertyValue
Object

The value set in the IDTSCustomProperty100.

Returns

The IDTSCustomProperty100 object whose property is set.

Attributes

Remarks

Override this method to control or prevent modifications to the custom properties of the component.

Applies to