MadelineProto/old_docs/API_docs_v65/constructors/pageBlockPreformatted.md

37 lines
673 B
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
title: pageBlockPreformatted
description: pageBlockPreformatted attributes, type and example
---
## Constructor: pageBlockPreformatted
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|text|[RichText](../types/RichText.md) | Yes|
|language|[string](../types/string.md) | Yes|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```
$pageBlockPreformatted = ['_' => 'pageBlockPreformatted', 'text' => RichText, 'language' => string, ];
```
Or, if you're into Lua:
```
pageBlockPreformatted={_='pageBlockPreformatted', text=RichText, language=string, }
```