maximumBannerSizePortrait
Overview
Returns the banner size string with maximum width that will fit on a given device in portrait screen orientation.
Syntax
maximumBannerSizePortrait(callback)
callback (REQUIRED)
Callback<String>. Used to provide the function call result to JavaScript.
Parameters:
String- Banner size best fitting current device.
Examples
AATKitCordova.maximumBannerSizePortrait((result) => {
console.log("maximumBannerSizePortrait " + result);
});
Last updated