MadelineProto/old_docs/API_docs_v65/constructors/pageBlockEmbed.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

43 lines
1.1 KiB
Markdown

---
title: pageBlockEmbed
description: pageBlockEmbed attributes, type and example
---
## Constructor: pageBlockEmbed
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|full\_width|[Bool](../types/Bool.md) | Optional|
|allow\_scrolling|[Bool](../types/Bool.md) | Optional|
|url|[string](../types/string.md) | Optional|
|html|[string](../types/string.md) | Optional|
|poster\_photo\_id|[long](../types/long.md) | Optional|
|w|[int](../types/int.md) | Yes|
|h|[int](../types/int.md) | Yes|
|caption|[RichText](../types/RichText.md) | Yes|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```
$pageBlockEmbed = ['_' => '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:
```
pageBlockEmbed={_='pageBlockEmbed', full_width=Bool, allow_scrolling=Bool, url=string, html=string, poster_photo_id=long, w=int, h=int, caption=RichText, }
```