Lines Matching refs:be
12 it. Text or characters can be added to it. Long lines are wrapped and when the
13 text becomes long enough, the Text Area can be scrolled.
32 ``bg_color`` style properties can be used. ``bg_color`` should be set
36 character. A block cursor can be created by adding a background color
69 Placeholder text is text that is displayed when the Text Area is empty. This can be
86 The cursor position can be modified programmatically using
88 the zero-based index of the character the cursor should be placed in front of.
89 :cpp:enumerator:`LV_TEXTAREA_CURSOR_LAST` can be passed to mean "after the
105 The cursor is normally always visible. It it can be a good idea to style it
106 to be visible only in :cpp:enumerator:`LV_STATE_FOCUSED` state. See :ref:`styles`
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
129 exist in the font, ``*`` will be used. You can override the default
140 The visibility time can be adjusted with :c:macro:`LV_TEXTAREA_DEF_PWD_SHOW_TIME` in ``lv_conf.h``.
148 entered not in this list will be ignored.
157 The maximum number of characters can be limited using
164 drawing might be slow. However, by setting :c:macro:`LV_LABEL_LONG_TXT_HINT` in
182 Any part of the text can be selected if enabled with
186 selection, any text selected time of the call will be de-selected.
189 be added in the future.
223 inserted. The event parameter is the text about to be inserted.
224 :cpp:expr:`lv_textarea_set_insert_replace(textarea, "New text")` can be called
225 from within that event to replace the text to be inserted. The contents of the
226 buffer passed must be survive long enough for the call to `lv_timer_handler()`
228 copied the text). So it should not be a local buffer (created on the stack)
229 where its contents will be destroyed before that happens. Passing ``""`` means "do