45 lines
711 B
Markdown
45 lines
711 B
Markdown
---
|
|
title: pageBlockParagraph
|
|
description: A text paragraph
|
|
---
|
|
## Constructor: pageBlockParagraph
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
A text paragraph
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|text|[RichText](../types/RichText.md) | Yes|Paragraph text|
|
|
|
|
|
|
|
|
### Type: [PageBlock](../types/PageBlock.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$pageBlockParagraph = ['_' => 'pageBlockParagraph', 'text' => RichText];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "pageBlockParagraph", "text": RichText}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
pageBlockParagraph={_='pageBlockParagraph', text=RichText}
|
|
|
|
```
|
|
|
|
|