ADBannerView.Layout
Specifies how banner should be layed out on screen.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.iOS
- Assembly: UnityEngine.CoreModule
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 | Traditional Banner: align to screen bottom. |
| BottomCenter | Rect Banner: align to screen bottom, placing at the center. |
| BottomLeft | Rect Banner: place in bottom-left corner. |
| BottomRight | Rect Banner: place in bottom-right corner. |
| Center | Rect Banner: place exactly at screen center. |
| CenterLeft | Rect Banner: align to screen left, placing at the center. |
| CenterRight | Rect Banner: align to screen right, placing at the center. |
| Manual | Completely manual positioning. |
| Top | Traditional Banner: align to screen top. |
| TopCenter | Rect Banner: align to screen top, placing at the center. |
| TopLeft | Rect Banner: place in top-left corner. |
| TopRight | Rect Banner: place in top-right corner. |