DlgBillboard.IsVisible

boolean DlgBillboard.IsVisible ( 

number ControlID )

Example 1

Visible = DlgBillboard.IsVisible(CTRL_BILLBOARD_01);

Checks whether the CTRL_BILLBOARD_01 billboard control is visible and stores true or false in a variable called "Visible."

Example 2

b2isVisible = DlgBillboard.IsVisible(CTRL_BILLBOARD_02);

Stores true in "b2isVisible" if the CTRL_BILLBOARD_02 billboard control 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