Description
Asks a number value for the input variable.
Fields
Key | Type | Description |
---|---|---|
min
|
Number |
The minimum accepted number value. Optional Variable is NOT allowed |
max
|
Number |
The maximum accepted number value. Optional Variable is NOT allowed |
default
|
Number |
The default number value. Optional Variable is NOT allowed |
step
|
Number |
The number step. Optional Variable is NOT allowed |
Examples
Ask user input for an integer number between 0 to 100.
selector:
type: number
min: 0
max: 100
step: 1
Ask user input for any number.
selector:
type: number
Ask user input for a float number, and the minimum precision is 0.1.
selector:
type: number
step: 0.1