MadelineProtoDocs/old_docs/API_docs_v82/constructors/pageBlockEmbed.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

52 lines
1.5 KiB
Markdown

---
title: pageBlockEmbed
description: Page block embed
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockEmbed
[Back to constructors index](index.md)
Page block embed
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|full\_width|[Bool](../types/Bool.md) | Optional|Full width?|
|allow\_scrolling|[Bool](../types/Bool.md) | Optional|Allow scrolling?|
|url|[string](../types/string.md) | Optional|URL|
|html|[string](../types/string.md) | Optional|Html|
|poster\_photo\_id|[long](../types/long.md) | Optional|Poster photo ID|
|w|[int](../types/int.md) | Yes|Width|
|h|[int](../types/int.md) | Yes|Height|
|caption|[RichText](../types/RichText.md) | Yes|Caption|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockEmbed = ['_' => 'pageBlockEmbed', 'full_width' => Bool, 'allow_scrolling' => Bool, 'url' => 'string', 'html' => 'string', 'poster_photo_id' => long, 'w' => int, 'h' => int, 'caption' => RichText];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "pageBlockEmbed", "full_width": Bool, "allow_scrolling": Bool, "url": "string", "html": "string", "poster_photo_id": long, "w": int, "h": int, "caption": RichText}
```
Or, if you're into Lua:
```lua
pageBlockEmbed={_='pageBlockEmbed', full_width=Bool, allow_scrolling=Bool, url='string', html='string', poster_photo_id=long, w=int, h=int, caption=RichText}
```