pbBindValue - cComActiveXControl
Controls whether an ActiveX's bindable property is bound to the Value property
Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None
Syntax
Property Boolean pbBindValue
| Access Type | Syntax |
|---|---|
| Read Access: | Get pbBindValue to BooleanVariable |
| Write Access: | Set pbBindValue to BooleanVariable/Value |
Description
The pbBindValue property controls whether an ActiveX's bindable property is bound to the Value property.
Situations may arise where a control is bindable but you do not want to use the control in that manner. In this case, you can just ignore the binding mechanism and everything should work perfectly - you just would not use the get/set Value interface. If for some reason the class binding behavior gets in your way, you can disable all binding and synchronization by setting the property pbBindValue to False (by default it is True). Setting pbBindValue to False severs any connection between the get/set Value message and any of the ActiveX control's interfaces. You will probably never need to change this property.