enigma-bbs/docs/_docs/art/views/text_view.md

49 lines
1.9 KiB
Markdown
Raw Normal View History

2022-01-26 22:21:40 +00:00
---
layout: page
2022-01-26 23:22:13 +00:00
title: Text View
2022-01-26 22:21:40 +00:00
---
2022-01-26 23:22:13 +00:00
## Text View
2022-01-26 22:21:40 +00:00
A text label view supports displaying simple text on a screen.
## General Information
2022-07-16 18:35:39 +00:00
> :information_source: A text label view is defined with a percent (%) and the characters TL, followed by the view number. For example: `%TL1`
2022-01-26 22:21:40 +00:00
2022-07-16 18:35:39 +00:00
> :information_source: See [MCI](../mci.md) for general information on how to use views and common configuration properties available for them.
2022-01-26 22:21:40 +00:00
### Properties
| Property | Description |
|-------------|--------------|
2022-01-26 23:22:13 +00:00
| `text` | Sets the text to display on the label |
2022-01-28 22:34:52 +00:00
| `textStyle` | Sets the standard (non-focus) text style. See **Text Styles** in [MCI](../mci.md) |
2022-01-26 23:22:13 +00:00
| `width` | Sets the width of a view to display horizontally (default 15)|
| `justify` | Sets the justification of the text in the view. Options: left (default), right, center |
| `fillChar` | Specifies a character to fill extra space in the view with. Defaults to an empty space |
| `textOverflow` | Set overflow characters to display in case the text length is less than the width. See **Text Overflow** below |
2022-01-26 22:21:40 +00:00
### Text Overflow
The `textOverflow` option is used to specify what happens when a text string is too long to fit in the `width` defined.
2022-07-16 18:35:39 +00:00
> :information_source: If `textOverflow` is not specified at all, a text label can become wider than the `width` if needed to display the text value.
2022-01-26 22:21:40 +00:00
2022-07-16 18:35:39 +00:00
> :information_source: Setting `textOverflow` to an empty string `textOverflow: ""` will cause the item to be truncated if necessary without any characters displayed
2022-01-26 22:21:40 +00:00
2022-07-16 18:35:39 +00:00
> :information_source: Otherwise, setting `textOverflow` to one or more characters will truncate the value if necessary and display those characters at the end. i.e. `textOverflow: ...`
2022-01-26 22:21:40 +00:00
## Example
![Example](../../assets/images/text_label_view_example1.png "Text label")
<details>
<summary>Configuration fragment (expand to view)</summary>
<div markdown="1">
```
TL1: {
text: Text label
}
```
</div>
</details>