CheckBox.IsVisible

boolean CheckBox.IsVisible ( 

string ObjectName )

Example 1

Visible = CheckBox.IsVisible("Check1");

Checks whether the checkbox object called "Check1" is visible and stores true or false in a variable called "Visible."

Example 2

b5isVisible = CheckBox.IsVisible("Check5");

Stores true in "b5isVisible" if the "Check5" checkbox 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