Lines Matching refs:text
11 The Spangroup Widget is used to display rich text. Different
12 from the Label Widget, Spangroups can render text styled with
17 own text and style properties for that text. You add 1 Span (as a child) to the
18 Spangroup for each "span" of uniquely-styled text needed. Each Span so added is
40 Set text and style
49 After a Span is created, use the following functions to set its text
52 - :cpp:expr:`lv_span_set_text(span, "text")`
97 Like the Label Widget, a Spangroup can be set to one the following text-alignment modes:
99 - :cpp:enumerator:`LV_TEXT_ALIGN_LEFT` Align text to left.
100 - :cpp:enumerator:`LV_TEXT_ALIGN_CENTER` Center text.
101 - :cpp:enumerator:`LV_TEXT_ALIGN_RIGHT` Align text to right edge.
105 to set text alignment.
114 - :cpp:enumerator:`LV_SPAN_MODE_EXPAND` Expand size to text size but stay on one line.
123 A Spangroup can be set to handle text overflow in one of the following ways:
125 - :cpp:enumerator:`LV_SPAN_OVERFLOW_CLIP` truncates text at the limit of the area.
126 - :cpp:enumerator:`LV_SPAN_OVERFLOW_ELLIPSIS` display an ellipsis (``...``) when text overflows the…