Basics
Guides
API Reference
Basics
Guides
API Reference
[17:7] extends: NumberProperty
Wraps JavaFX's FloatProperty backed by SimpleFloatProperty. Holds a float value. Shared Property + NumberProperty surface (bind / listeners / isBound / asString / etc.) is inherited. Aussom double values are converted to Java float on dispatch; caller should be aware of precision loss for values outside the float range.
FloatProperty (double Value = 0.0)
Creates a new FloatProperty with the given initial value (defaults to 0.0).
Value is the initial float value.adopt (object Ajo)
Wraps an existing FloatProperty AussomJavaObject.
Ajo is an AussomJavaObject around a javafx FloatProperty.A new FloatProperty wrapper.get ()
Returns the current float value as an Aussom double.
set (double Value)
Sets the float value. Aussom double is boxed to java.lang.Float because invoke() can't dispatch to a primitive float overload from an Aussom Double directly.
Value is the new float.this objectsetValue (double Value)
Sets the value via the boxed Number API. Aussom double is boxed to java.lang.Float before dispatch.
Value is the new float.this object
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.