2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: pageBlockParagraph
|
2017-08-25 15:05:53 +02:00
|
|
|
description: A text paragraph
|
2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
## Constructor: pageBlockParagraph
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-08-25 15:05:53 +02:00
|
|
|
A text paragraph
|
|
|
|
|
2017-01-25 23:16:22 +01:00
|
|
|
### Attributes:
|
|
|
|
|
2017-08-25 15:05:53 +02:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|text|[RichText](../types/RichText.md) | Yes|Paragraph text|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PageBlock](../types/PageBlock.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$pageBlockParagraph = ['_' => 'pageBlockParagraph', 'text' => RichText];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "pageBlockParagraph", "text": RichText}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
pageBlockParagraph={_='pageBlockParagraph', text=RichText}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|