MadelineProtoDocs/old_docs/API_docs_v73/constructors/pageBlockParagraph.md

43 lines
681 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: pageBlockParagraph
2018-04-01 13:24:46 +02:00
description: pageBlockParagraph attributes, type and example
2018-04-01 13:19:25 +02:00
---
## Constructor: pageBlockParagraph
[Back to constructors index](index.md)
### Attributes:
2018-04-01 13:24:46 +02:00
| Name | Type | Required |
|----------|---------------|----------|
|text|[RichText](../types/RichText.md) | Yes|
2018-04-01 13:19:25 +02:00
### 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}
```