SetMultiSizeAlignmentWithOffset

Overview

Sets multi size banner position on the screen with defined offset. Note: Banner cannot be displayed outside of the screen on the Android platform while it is possible on iOS. So please always make sure your banner displays correctly on both platforms. Also pease note x-axis direction is right, y-axis direction is top for both platforms.

Syntax

SetMultiSizeAlignmentWithOffset(placementName, bannerAlignment, x, y)

placementName (REQUIRED)

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

bannerAlignment (REQUIRED)

int Banner alignment on the screen. BannerAlignment.TopLeft = 0 BannerAlignment.TopCenter = 1 BannerAlignment.TopRight = 2 BannerAlignment.BottomLeft = 3 BannerAlignment.BottomCenter = 4 BannerAlignment.BottomRight = 5

x (REQUIRED)

int The x value of the banner offset. When this value is positive the banner is moved to the right, when it is negative the banner is moved to the left.

y (REQUIRED)

int The y value of the banner offset. When this value is positive the banner is moved to the bottom, when it is negative the banner is moved to the top.

returns void.

Examples

AATKitBinding.SetMultiSizeAlignmentWithOffset("MultiSizeBannerPlacement", BannerAlignment.BottomCenter, 0, -10);

Last updated