*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.
Data type: 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.
Data type: string

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

*BeginAssemblySelections()

*BeginTaskSelections()

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.