mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-11 16:50:37 +01:00
31 lines
744 B
Markdown
31 lines
744 B
Markdown
---
|
|
title: "pageBlockSlideshow"
|
|
description: "Slideshow"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: pageBlockSlideshow
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
Slideshow
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|items|Array of [PageBlock](/API_docs/types/PageBlock.html) | Yes|Slideshow items|
|
|
|caption|[PageCaption](/API_docs/types/PageCaption.html) | Yes|Caption|
|
|
|
|
|
|
|
|
### Type: [PageBlock](/API_docs/types/PageBlock.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$pageBlockSlideshow = ['_' => 'pageBlockSlideshow', 'items' => [PageBlock, PageBlock], 'caption' => PageCaption];
|
|
```
|