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

955 B

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

Constructor: pageBlockSlideshow

Back to constructors index

Page block slideshow

Attributes:

Name Type Required Description
items Array of PageBlock Yes Items
caption PageCaption Yes Caption

Type: PageBlock

Example:

$pageBlockSlideshow = ['_' => 'pageBlockSlideshow', 'items' => [PageBlock, PageBlock], 'caption' => PageCaption];

PWRTelegram json-encoded version:

{"_": "pageBlockSlideshow", "items": [PageBlock], "caption": PageCaption}

Or, if you're into Lua:

pageBlockSlideshow={_='pageBlockSlideshow', items={PageBlock}, caption=PageCaption}