Function: a!richTextBulletedList()
Displays a bulleted list within a rich text component.
Name | Keyword | Types | Description |
---|---|---|---|
Items |
|
Text, Styled Text, and List |
Array of text to display as a bulleted list. Text can be further formatted using |
Visibility |
|
Boolean |
Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
a!richTextDisplayField(
labelPosition: "COLLAPSED",
value: {
a!richTextBulletedList(
items: {
"A",
"B",
"C",
a!richTextItem(
text: "D",
style: "EMPHASIS"
),
"E"
}
)
}
)
Displays the following:
The following patterns include usage of the Bulleted List.