--- title: pageBlockEmbed description: pageBlockEmbed attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # 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]; ``` [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: ``` pageBlockEmbed={_='pageBlockEmbed', full_width=Bool, allow_scrolling=Bool, url='string', html='string', poster_photo_id=long, w=int, h=int, caption=RichText} ```