RichText.IsVisible

boolean RichText.IsVisible ( 

string ObjectName )

Example 1

Visible = RichText.IsVisible("RichText1");

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

Example 2

b5isVisible = RichText.IsVisible("RichText5");

Stores true in "b5isVisible" if the "RichText5" richtext 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