# ADBannerView.Layout

> Specifies how banner should be layed out on screen.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine.iOS](/engine/6000.5/script-reference/unityengine/ios.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public enum ADBannerView.Layout
```

## Remarks

Please note that Traditional Banner and Rect Banner (introduced in ios6) use different enum values. If you use "wrong" enum value for current ad type: for Traditional Banner Top\* and Center\* will be considered Top, and Bottom\* will be considered Bottom\* for Rect Banner Top will be considered TopLeft and Bottom - BottomLeft.

## Fields

| Value                                                                                               | Description                                                 |
| --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- |
| [Bottom](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/bottom.md)             | Traditional Banner: align to screen bottom.                 |
| [BottomCenter](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/bottomcenter.md) | Rect Banner: align to screen bottom, placing at the center. |
| [BottomLeft](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/bottomleft.md)     | Rect Banner: place in bottom-left corner.                   |
| [BottomRight](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/bottomright.md)   | Rect Banner: place in bottom-right corner.                  |
| [Center](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/center.md)             | Rect Banner: place exactly at screen center.                |
| [CenterLeft](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/centerleft.md)     | Rect Banner: align to screen left, placing at the center.   |
| [CenterRight](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/centerright.md)   | Rect Banner: align to screen right, placing at the center.  |
| [Manual](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/manual.md)             | Completely manual positioning.                              |
| [Top](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/top.md)                   | Traditional Banner: align to screen top.                    |
| [TopCenter](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/topcenter.md)       | Rect Banner: align to screen top, placing at the center.    |
| [TopLeft](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/topleft.md)           | Rect Banner: place in top-left corner.                      |
| [TopRight](/engine/6000.5/script-reference/unityengine/ios/adbannerview/layout/topright.md)         | Rect Banner: place in top-right corner.                     |
