DtsProperty.SetValue Method
Sets the value of the property.
Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub SetValue ( _
    o As Object, _
    value As Object _
)
'Usage
Dim instance As DtsProperty
Dim o As Object
Dim value As Object
instance.SetValue(o, value)
public void SetValue(
    Object o,
    Object value
)
public:
void SetValue(
    Object^ o, 
    Object^ value
)
member SetValue : 
        o:Object * 
        value:Object -> unit 
public function SetValue(
    o : Object, 
    value : Object
)
Parameters
- o
Type: System.Object
The object instance on which you want to set the value of the property. 
- value
Type: System.Object
The value to which to set the property.