> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-cordova-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-cordova-integration/other/reference/functions/setplacementposition.md).

# setPlacementPosition

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Sets banner placement position on the screen (x, y)

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```javascript
setPlacementPosition(placementName, x, y)
```

placementName **(REQUIRED)**

*string* Unique name of placement. The same name will be used in gravite.net account.

x **(REQUIRED)**

*int* Position of the banner in x-axis.

y **(REQUIRED)**

*int* Position of the banner in y-axis.

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```javascript
AATKitCordova.setPlacementPosition("Banner", 19, 92);
```
