> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-unity-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-unity-integration/other/reference/aatkitbinding/methods/setmultisizeposition.md).

# SetMultiSizePosition

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

Sets multi size banner position on the screen (x, y). If you want to set concrete position for multi size banner, you should use this method always when a new multi size ad is loaded (then [OnHaveAdOnMultiSizeBanner](/aatkit-unity-integration/other/reference/aatkitbinding/delegates/onhaveadonmultisizebanner.md) event is called). **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>

```
SetMultiSizePosition(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 multi size banner in x-axis.

posY **(REQUIRED)**

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

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

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

```csharp
AATKitBinding.SetMultiSizePosition("MultiSizeBannerPlacement", 50, 100);
```
