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.visible

var visible: bool;
bool visible;
visible as bool

Description

Banner visibility. Initially banner is not visible.

Please note that if you hide banner, ads might not be reloaded with time, so if you no longer need banner it is better to delete it completely.

void OnBannerClicked()
{
	Debug.Log("Clicked!\n");
	banner.visible = false;
	banner = null;
}
void OnBannerLoaded()
{
	Debug.Log("Loaded!\n");
	banner.visible = true;
}