Limited Double Property
fun LimitedDoubleProperty( lowerBoundInclusive: Number = Double.NEGATIVE_INFINITY, upperBoundInclusive: Number = Double.POSITIVE_INFINITY, initialValue: Number = lowerBoundInclusive)
Content copied to clipboard
Creates a LimitedDoubleProperty with given bounds and initial value.
Parameters
lower Bound Inclusive
Lower bound inclusive. Default: -inf.
upper Bound Inclusive
Upper bound inclusive. Default: +inf.
initial Value
Initial Value. Default: lowerBoundInclusive.