Lines Matching refs:text
5 …is the object that is used to display rich text. Different from the label object, `spangroup` can …
12 ### Set text and style
14 …text and text style. so, first we need to create `span` descriptor using `lv_span_t * span = lv_sp…
16 …ll `lv_spangroup_refr_mode()` after you have modified `span` style(eg:set text, changed the font s…
32 - `LV_TEXT_ALIGN_LEFT` Align text to left.
33 - `LV_TEXT_ALIGN_CENTER` Align text to center.
34 - `LV_TEXT_ALIGN_RIGHT` Align text to right.
35 - `LV_TEXT_ALIGN_AUTO` Align text auto.
37 use function `lv_spangroup_set_align(spangroup, LV_TEXT_ALIGN_CENTER)` to set text align.
42 - `LV_SPAN_MODE_EXPAND` Expand the object size to the text size but stay on a single line.
49 - `LV_SPAN_OVERFLOW_CLIP` truncates the text at the limit of the area.
50 - `LV_SPAN_OVERFLOW_ELLIPSIS` will display an ellipsis(`...`) when text overflows the area.