Skip to content

Description of type NumberEdit

Constructor of type NumberEdit

Syntax

JS
new NumberEdit(parent: widget = null) -> NumberEdit

Read more...

Properties of type NumberEdit

Below is a list of the available properties provided by the NumberEdit type. Click on a property name to see its detailed description and examples.

Property Description
value The current numeric value of the editor. Synchronized with text input. This is the primary property for data binding.
visible Whether the icon is visible.
enabled Whether the label is enabled.

Methods of type NumberEdit

Below is a list of the available methods provided by the NumberEdit type. Click on a method name to see its detailed description and examples.

Method Description
setRange() Sets the allowed minimum, maximum, and number of decimal digits.
setMinimumValue() Sets the minimum allowable value.
setMaximumValue() Sets the maximum allowable value.
setDecimals() Sets the number of decimal places used for display and validation.
setEnabled() Sets the enabled.
setVisible() Sets the visible.

Signals of type NumberEdit

Below is a list of the available signals provided by the NumberEdit type. Click on a signal name to see its detailed description and examples.

Signal Description
valueChanged() Emitted when the numeric value changes — either by user input or setValue(). Used for data binding.
valueEditingFinished() Emitted when the user finishes editing (e.g., focus out or Enter key). The current value is passed.
Last update: 18 August 2025, 14:28