Lines Matching full:can
6 Texts or characters can be added to it.
7 Long lines are wrapped and when the text becomes long enough the Text area can be scrolled.
14 …el.html#text-selection). Only `text_color` and `bg_color` style properties can be used. `bg_color`…
16 A block cursor can be created by adding a background color and background opacity to `LV_PART_CURSO…
24 You can insert text or characters to the current cursor's position with:
35 A placeholder text can be specified - which is displayed when the Text area is empty - with `lv_tex…
44 The cursor position can be modified directly like `lv_textarea_set_cursor_pos(textarea, 10)`.
48 You can step the cursor with
57 The cursor is always visible, however it can be a good idea to style it to be visible only in `LV_S…
60 The Text area can be configured to be on a single line with `lv_textarea_set_one_line(textarea, tru…
64 The text area supports password mode which can be enabled with `lv_textarea_set_password_mode(texta…
66 …acter is entered. If `•` does not exist in the font, `*` will be used. You can override the defaul…
70 The visibility time can be adjusted with `LV_TEXTAREA_DEF_PWD_SHOW_TIME)` in `lv_conf.h`.
73 You can set a list of accepted characters with `lv_textarea_set_accepted_chars(textarea, "012345678…
77 The maximum number of characters can be limited with `lv_textarea_set_max_length(textarea, max_char…
82 However, by enabling `LV_LABEL_LONG_TXT_HINT 1` in `lv_conf.h` the performance can be hugely impr…
87 Any part of the text can be selected if enabled with `lv_textarea_set_text_selection(textarea, true…