*Selection()
Picks an item from a radio group or system group.
Syntax
*Selection(grp_name, "grp_item")
    Arguments
- grp_name
 - The variable name of an existing radio group or system group.
 - grp_item
 - The label of an item from a radio group or a system from a system group to be set as the current selection of the radio group or system group.
 
Example
*BeginWizardSelections()
 
 
*BeginAssemblySelections()
 
*Selection(model_type, "Full vehicle")
 *Selection(drive_type, "Front wheel drive")
 *Selection(sys_body, "Body")
 *Selection(sys_frnt_sub, "Frnt subframe")
 *Selection(sys_frnt_susp, 
 "Frnt macpherson susp (1 pc. LCA)")
 ...
 *EndAssemblySelections()
 *BeginTaskSelections()
 *Selection(full_task, "an_brake_turn_event")
 *EndTaskSelections()
*EndWizardSelections()
    Context
Comments
The label of the item or system specified in the *Selection() statement must match one of the items or systems specified in the radio group item list or the system group system list.