# SetPlacementPosition

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

Sets banner placement position on the screen (x, y). **Note**: x-axis direction is right, y-axis direction is top for both platforms.

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

```csharp
SetPlacementPosition(placementName, posX, posY)
```

placementName **(REQUIRED)**

*string* Unique name of placement. The same name will be used in addapptr.com account.

posX **(REQUIRED)**

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

posY **(REQUIRED)**

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

**returns&#x20;*****void***

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

```csharp
SetPlacementPosition("BannerPlacement", 50, 100);
```
