DependencyObject::SetValue Method (DependencyProperty^, Object^)
.NET Framework (current version)
Sets the value of the DependencyProperty to the object.
Assembly: System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)
Parameters
- dependencyProperty
-
Type:
System.Workflow.ComponentModel::DependencyProperty^
The DependencyProperty to be set.
- value
-
Type:
System::Object^
The Object to set the value to.
SetBinding sets a binding for the dependency property.
SetValue sets a value directly to the DependencyProperty (similarly, AddHandler adds a handler directly to properties of type event).
These methods are exclusive when they are called for the same property. If SetBinding is called, then the values previously set using SetValue (AddHandler in events) are disregarded. The same is true the other way around: SetValue (AddHandler) resets the binding assigned with SetBinding.
.NET Framework
Available since 3.0
Available since 3.0
Show: