Lines Matching full:with
11 The Text Area is a :ref:`base_widget_overview` with a :ref:`lv_label` and a cursor on
53 You can insert text or characters to the current cursor's position with:
62 with "New text".
70 a handy way to provide the end user with a hint about what to type there.
92 You can move the cursor one character-position (or line) at a time with
112 The Text Area can be configured to keep all text on a single line with
122 The Text Area supports password mode which can be enabled with
130 "masking" character with :cpp:expr:`lv_textarea_set_password_bullet(textarea, str)`
140 The visibility time can be adjusted with :c:macro:`LV_TEXTAREA_DEF_PWD_SHOW_TIME` in ``lv_conf.h``.
145 You can set a list of accepted characters with
165 ``lv_conf.h`` to a non-zero value, the performance with long text is significantly
167 vertical position of the text shown. With this mode configured, scrolling and drawing
168 is as fast as with "normal" short text. The cost is 12 extra bytes per label in RAM.
182 Any part of the text can be selected if enabled with
184 when you select text on your PC by clicking and dragging with your mouse or other
188 Shift+click and keyboard-only text selection with Shift+Arrow keys is expected to
191 If you need to programmatically deal with selected text, in addition to the
194 Label retrieved with ``ta_label = lv_textarea_get_label(textarea);``.)