Plugin.IsVisible

boolean Plugin.IsVisible (

string ObjectName )

Example 1

AddOn_Visible = Plugin.IsVisible("Add_On");

Checks whether the plugin object called "Add_On" is visible and stores true or false in a variable called "AddOn_Visible."

Example 2

bPlug5isVisible = Plugin.IsVisible("Plugin5");

Stores true in "bPlug5isVisible" if the "Plugin5" plugin object is visible.

Tip: Starting a variable name with "b" is a technique that programmers use to help themselves remember that a variable contains a boolean value.

See also: Related Actions