2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: pageBlockVideo
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Video
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: pageBlockVideo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Video
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|autoplay|[Bool](../types/Bool.md) | Optional|Whether the video is set to autoplay|
|
|
|
|
|loop|[Bool](../types/Bool.md) | Optional|Whether the video is set to loop|
|
2019-09-13 17:13:55 +02:00
|
|
|
|video\_id|[long](../types/long.md) | Yes|Video ID|
|
|
|
|
|caption|[PageCaption](../types/PageCaption.md) | Yes|Caption|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PageBlock](../types/PageBlock.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$pageBlockVideo = ['_' => 'pageBlockVideo', 'autoplay' => Bool, 'loop' => Bool, 'video_id' => long, 'caption' => PageCaption];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
pageBlockVideo={_='pageBlockVideo', autoplay=Bool, loop=Bool, video_id=long, caption=PageCaption}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|