Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ADBannerView.loaded

var loaded: bool;
bool loaded;
loaded as bool

Description

Checks if banner contents are loaded.

You should hide banner if it is not loaded to avoid showing blank view.

if(banner.visible && !banner.loaded)
	banner.visible = false;