PropertyBase
abstract class PropertyBase<V>(val bean: Any? = null, val beanName: String? = null) : ObservableValueBase<V> , Property<V>
Inheritors
Properties
Functions
Link copied to clipboard
open override fun <B> bidirectionalBind(other: Property<B>, converter: Converter<V, B>): BidirectionalBind
This property's value is set to other's value, and then both values are bound to each other. i.e. if either property changes, the other will also change.
Link copied to clipboard
Removes a bidirectional bind created using bidirectionalBind.
Link copied to clipboard
The value of this property is bound to the value of property to.