Please enable JavaScript to view this site.

ESL Documentation

Action Statement

Check or uncheck a radio button, check box, or choice item.

For Radio Buttons and Check Boxes:

{check|uncheck} OBJECT_NAME

For Choice Items:

{check|uncheck} item

{ITEM_NAME [from AB_NAME]|ITEM_CLASS_NAME}

in {REG_NAME|REG_CLASS_NAME}

OBJECT_NAME

The identifier for a radio button or check box. If a radio button is checked, the center is filled in. If a check box is checked, the box contains a checkmark.

ITEM_NAME

The identifier for a choice. If checked, a choice is displayed with a checkmark to its left.

from AB_NAME

The identifier for an action bar template. The action bar name must be specified if more than one template contains an item of the given name. It cannot be specified if the item was defined outside of an action bar template.

ITEM_CLASS_NAME

The identifier for an item class containing a group of items to be checked or unchecked.

in REG_NAME

The identifier for a region containing the item.

in REG_CLASS_NAME

The identifier for a class of regions.

Description

When checking a radio button that is a member of a group, all other radio buttons in the group will be unchecked.

Only the items specified in region REG_NAME are checked or unchecked. If you specify REG_CLASS_NAME, the specified items from the regions in the class are checked or unchecked.

Example

 

response to Copy_To_All_CB

 check Copy_To_All_CB

 check Copy_To_Disk_CB

 check Copy_To_Network_CB

 

response to item Bar_MC from View_Graph_Window_AB in View_Graph_Window_GR

 check   item Bar  from View_Graph_Window_AB in View_Graph_Window_GR

 uncheck item Pie  from View_Graph_Window_AB in View_Graph_Window_GR

 uncheck item line from View_Graph_Window_AB in View_Graph_Window_GR

See Also

choice Definition

is checked Object/Item Inquiry Built-in Function