MadelineProtoDocs/old_docs/API_docs_v105/constructors/pageBlockHeader.md

39 lines
644 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: pageBlockHeader
description: Page block header
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockHeader
[Back to constructors index](index.md)
Page block header
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|text|[RichText](../types/RichText.md) | Yes|Text|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockHeader = ['_' => 'pageBlockHeader', 'text' => RichText];
```
Or, if you're into Lua:
```lua
pageBlockHeader={_='pageBlockHeader', text=RichText}
```