MadelineProtoDocs/docs/API_docs/constructors/pageBlockEmbed.md

1.3 KiB

title description image
pageBlockEmbed Page block embed https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockEmbed

Back to constructors index

Page block embed

Attributes:

Name Type Required Description
full_width Bool Optional Full width?
allow_scrolling Bool Optional Allow scrolling?
url string Optional URL
html string Optional Html
poster_photo_id long Optional Poster photo ID
w int Optional Width
h int Optional Height
caption PageCaption Yes Caption

Type: PageBlock

Example:

$pageBlockEmbed = ['_' => 'pageBlockEmbed', 'full_width' => Bool, 'allow_scrolling' => Bool, 'url' => 'string', 'html' => 'string', 'poster_photo_id' => long, 'w' => int, 'h' => int, 'caption' => PageCaption];

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=PageCaption}