Web.IsVisible

boolean Web.IsVisible ( 

string ObjectName )

Example 1

order_form_visible = Web.IsVisible("Online Order Form");

Checks whether the web object called "Online Order Form" is visible and stores true or false in a variable called "order_form_visible."

Example 2

bWeb2isVisible = Web.IsVisible("Web2");

Stores true in bWeb2isVisible if the "Web2" web 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