BindingFlags
Description:
[ CCode ( cprefix = "G_BINDING_" , type_id = "G_TYPE_BINDING_FLAGS" ) ]
[ Flags ]
[ Version ( since = "2.26" ) ]
public enum BindingFlags
Flags to be passed to g_object_bind_property
or g_object_bind_property_full
.
This enumeration can be extended at later date.
Content:
Enum values:
- BIDIRECTIONAL - Bidirectional
binding; if either the property of the source or the property of the target changes, the other is updated.
- DEFAULT - The default binding; if the
source property changes, the target property is updated with its value.
- INVERT_BOOLEAN - If the two
properties being bound are booleans, setting one to true will result in the other being set to
false and vice versa.
- SYNC_CREATE - Synchronize the values
of the source and target properties when creating the binding; the direction of the synchronization is always from the source to the
target.