43 lines
681 B
Markdown
43 lines
681 B
Markdown
|
---
|
||
|
title: pageBlockParagraph
|
||
|
description: pageBlockParagraph attributes, type and example
|
||
|
---
|
||
|
## Constructor: pageBlockParagraph
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|text|[RichText](../types/RichText.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### 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}
|
||
|
|
||
|
```
|
||
|
|
||
|
|