Lines Matching full:with
5 The Text Area is a [Base object](widgets/obj) with a [Label](/widgets/core/label) and a cursor on i…
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…
48 You can step the cursor with
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 …ist in the font, `*` will be used. You can override the default character with `lv_textarea_set_pa…
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…
84 Using `LV_LABEL_LONG_TXT_HINT` the scrolling and drawing will as fast as with "normal" short texts.
87 Any part of the text can be selected if enabled with `lv_textarea_set_text_selection(textarea, true…
88 This works much like when you select text on your PC with your mouse.