Paragraph.IsVisible

boolean Paragraph.IsVisible ( 

string ObjectName )

Example 1

readme_text_visible = Paragraph.IsVisible("Readme");

Checks whether the paragraph object called "Readme" is visible and stores true or false in a variable called "readme_text_visible."

Example 2

bPara2isVisible = Paragraph.IsVisible("Para2");

Stores true in bPara2isVisible if the "Para2" paragraph 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