Lines Matching refs:to
14 :ref:`lv_textarea` with behaviors extended to enable a numeric value
15 to be viewed and modified with configurable constraints.
24 Spinbox's parts are identical to those of :ref:`Text Area <lv_textarea_parts_and_styles>`.
31 increments/decrements the value of the Spinbox according to the currently-selected digit.
36 - :cpp:expr:`lv_spinbox_set_step(spinbox, 100)` sets which digit to change on
38 - :cpp:expr:`lv_spinbox_set_cursor_pos(spinbox, 1)` sets the cursor to a specific
39 digit to change on increment/decrement. Position '0' sets the cursor to
42 If an encoder is used as input device, the selected digit is shifted to
43 the right by default whenever the encoder button is clicked. To change this behaviour to shifting
44 to the left, the :cpp:expr:`lv_spinbox_set_digit_step_direction(spinbox, LV_DIR_LEFT)` can be used
50 sets the number format. ``digit_count`` is the total number of digits to display.
52 Pass 0 for ``separator_position`` to display no decimal point.
59 rollover enabled, and the user attempts to continue changing the value in
60 the same direction, the value will change to the other limit. If rollover
91 - :cpp:enumerator:`LV_KEY_ENTER` With *Encoder*, move focus to next digit. If focus
92 is on last digit, focus moves to first digit.