SlideShow.IsVisible

boolean SlideShow.IsVisible ( 

string ObjectName )

Example 1

Visible = SlideShow.IsVisible("SlideShow1");

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

Example 2

b5isVisible = SlideShow.IsVisible("SlideShow5");

Stores true in "b5isVisible" if the "SlideShow5" slideshow 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