DlgBillboard.IsEnabled

boolean DlgBillboard.IsEnabled ( 

number ControlID )

Example 1

enabled = DlgBillboard.IsEnabled(CTRL_BILLBOARD_02);

Stores true in a variable named "enabled" if the billboard control is enabled, and false if it is disabled.

Example 2

b2Enabled = DlgBillboard.IsEnabled(CTRL_BILLBOARD_02);

Checks whether the billboard control is enabled or disabled, and sets the "b2Enabled" variable to either true or false accordingly.

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