RadioButton.IsVisible

boolean RadioButton.IsVisible ( 

string ObjectName )

Example 1

Visible = RadioButton.IsVisible("Radio1");

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

Example 2

b5isVisible = RadioButton.IsVisible("Radio5");

Stores true in "b5isVisible" if the "Radio5" radiobutton 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