Package: gobject
Function gobject:object-bind-property
Lambda Listgobject:object-bind-property (source source-prop target target-prop flags) ArgumentsReturn ValueDetails Creates a binding between source-prop on source and target-prop on target. Whenever the source-prop is changed the target-prop is
updated using the same value. If the flags argument contains the :bidirectional value then the binding will be mutual. If the target-prop property on target changes then the source-prop property on source will be updated as well. The binding will automatically be removed when either the source or the target instances are finalized. To remove the binding without affecting the source and the target you can call the g:binding-unbind function on the returned g:binding object. A g:object instance can have multiple bindings. Examples(g:object-bind-property action "active" widget "sensitive" :default) | See also |
2024-12-7