MadelineProtoDocs/docs/API_docs/constructors/pageBlockParagraph.md

39 lines
670 B
Markdown

---
title: pageBlockParagraph
description: A text paragraph
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# 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:
```php
$pageBlockParagraph = ['_' => 'pageBlockParagraph', 'text' => RichText];
```
Or, if you're into Lua:
```lua
pageBlockParagraph={_='pageBlockParagraph', text=RichText}
```