39 lines
660 B
Markdown
39 lines
660 B
Markdown
|
---
|
||
|
title: pageListItemText
|
||
|
description: Page list item text
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: pageListItemText
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Page list item text
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|text|[RichText](../types/RichText.md) | Yes|Text|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [PageListItem](../types/PageListItem.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$pageListItemText = ['_' => 'pageListItemText', 'text' => RichText];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
pageListItemText={_='pageListItemText', text=RichText}
|
||
|
|
||
|
```
|
||
|
|
||
|
|