Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the value of an IDTSCustomProperty100 for an IDTSOutputColumn100 object.
This API is not CLS-compliant.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Overridable Function SetOutputColumnProperty ( _
outputID As Integer, _
outputColumnID As Integer, _
propertyName As String, _
propertyValue As Object _
) As IDTSCustomProperty100
'Usage
Dim instance As PipelineComponent
Dim outputID As Integer
Dim outputColumnID As Integer
Dim propertyName As String
Dim propertyValue As Object
Dim returnValue As IDTSCustomProperty100
returnValue = instance.SetOutputColumnProperty(outputID, _
outputColumnID, propertyName, propertyValue)
[CLSCompliantAttribute(false)]
public virtual IDTSCustomProperty100 SetOutputColumnProperty(
int outputID,
int outputColumnID,
string propertyName,
Object propertyValue
)
[CLSCompliantAttribute(false)]
public:
virtual IDTSCustomProperty100^ SetOutputColumnProperty(
int outputID,
int outputColumnID,
String^ propertyName,
Object^ propertyValue
)
[<CLSCompliantAttribute(false)>]
abstract SetOutputColumnProperty :
outputID:int *
outputColumnID:int *
propertyName:string *
propertyValue:Object -> IDTSCustomProperty100
[<CLSCompliantAttribute(false)>]
override SetOutputColumnProperty :
outputID:int *
outputColumnID:int *
propertyName:string *
propertyValue:Object -> IDTSCustomProperty100
public function SetOutputColumnProperty(
outputID : int,
outputColumnID : int,
propertyName : String,
propertyValue : Object
) : IDTSCustomProperty100
Parameters
- outputID
Type: System.Int32
The ID of the IDTSOutput100 that contains the IDTSOutputColumn100 object.
- outputColumnID
Type: System.Int32
The ID of the IDTSOutputColumn100 object.
- propertyName
Type: System.String
The name of the IDTSCustomProperty100.
- propertyValue
Type: System.Object
The value assigned to the IDTSCustomProperty100.
Return Value
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomProperty100
The IDTSCustomProperty100 whose value was set.
Remarks
Override this method to control or prevent modifications to the custom property of the output column.