MadelineProtoDocs/old_docs/API_docs_v103/constructors/pageBlockKicker.md

39 lines
644 B
Markdown
Raw Normal View History

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