MadelineProto/docs/API_docs/constructors/maskCoords.md

39 lines
685 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: maskCoords
2016-12-20 13:32:11 +01:00
description: maskCoords attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: maskCoords
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|n|[int](../types/int.md) | Yes|
|x|[double](../types/double.md) | Yes|
|y|[double](../types/double.md) | Yes|
|zoom|[double](../types/double.md) | Yes|
2016-12-19 18:56:05 +01:00
### Type: [MaskCoords](../types/MaskCoords.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$maskCoords = ['_' => 'maskCoords', 'n' => int, 'x' => double, 'y' => double, 'zoom' => double, ];
```
Or, if you're into Lua:
```
maskCoords={_='maskCoords', n=int, x=double, y=double, zoom=double, }
```