![]() |
SetBindObject()








Public Function |
Declared in: NiBinding.h |
Declaration
void SetBindObject( CNiControl& control);
Description
Sets the object whose property binds to a data source. You must call this function from the thread that created the control.
Parameters
CNiControl& control
The control to bind.
See Also
Example
// Sets the BindObject to be a CNiKnob.CNiKnob knob; CNiBinding binding = knob.Bindings.Item(1); binding.SetBindObject(knob);