PipelineComponent.SetOutputColumnProperty Method

Definition

Important

This API is not CLS-compliant.

Sets the value of an IDTSCustomProperty100 for an IDTSOutputColumn100 object.

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

Parameters

outputID
Int32

The ID of the IDTSOutput100 that contains the IDTSOutputColumn100 object.

outputColumnID
Int32

The ID of the IDTSOutputColumn100 object.

propertyName
String

The name of the IDTSCustomProperty100.

propertyValue
Object

The value assigned to the IDTSCustomProperty100.

Returns

The IDTSCustomProperty100 whose value was set.

Attributes

Remarks

Override this method to control or prevent modifications to the custom property of the output column.

Applies to