2020-03-06 12:24:14 +01:00
|
|
|
---
|
|
|
|
title: wallPaperNoFile
|
2020-06-16 17:50:25 +02:00
|
|
|
description: No file wallpaper
|
2020-03-06 12:24:14 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: wallPaperNoFile
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-06-16 17:50:25 +02:00
|
|
|
No file wallpaper
|
|
|
|
|
2020-03-06 12:24:14 +01:00
|
|
|
### Attributes:
|
|
|
|
|
2020-06-16 17:50:25 +02:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|default|[Bool](../types/Bool.md) | Optional|Whether this is the default wallpaper|
|
|
|
|
|dark|[Bool](../types/Bool.md) | Optional|Dark mode|
|
|
|
|
|settings|[WallPaperSettings](../types/WallPaperSettings.md) | Optional|Wallpaper settings|
|
2020-03-06 12:24:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [WallPaper](../types/WallPaper.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$wallPaperNoFile = ['_' => 'wallPaperNoFile', 'default' => Bool, 'dark' => Bool, 'settings' => WallPaperSettings];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
wallPaperNoFile={_='wallPaperNoFile', default=Bool, dark=Bool, settings=WallPaperSettings}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|