SimpleDoubleProperty

open class SimpleDoubleProperty(initialValue: Double, bean: Any? = null, beanName: String? = null) : SimpleProperty<Double> , DoubleProperty

Boilerplate which avoids having to use generics. Instead of SimpleProperty<Double>, we can use SimpleDoubleProperty.

Constructors

Link copied to clipboard
constructor(initialValue: Double, bean: Any? = null, beanName: String? = null)