2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
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|
|
2017-03-11 19:54:51 +01:00
|
|
|
|w|[int](../types/int.md) | Yes|
|
|
|
|
|h|[int](../types/int.md) | Yes|
|
|
|
|
|caption|[RichText](../types/RichText.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PageBlock](../types/PageBlock.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 20:06:30 +01:00
|
|
|
$pageBlockEmbed = ['_' => 'pageBlockEmbed', 'full_width' => Bool, 'allow_scrolling' => Bool, 'url' => string, 'html' => string, 'poster_photo_id' => long, 'w' => int, 'h' => int, 'caption' => RichText, ];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-03-11 20:06:30 +01:00
|
|
|
pageBlockEmbed={_='pageBlockEmbed', full_width=Bool, allow_scrolling=Bool, url=string, html=string, poster_photo_id=long, w=int, h=int, caption=RichText, }
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|