*Item()

Creates a selection in a radio group.

Syntax

*Item("select_text", "help_text")

Arguments

select_text
Selection descriptive text.
Type: String
help_text
Additional selection information (not used).
Type: String

Example

*BeginPanel()
  *Title("Model Type")
  *Prompt("Select the model type.")
  *BeginRadioGroup(model_type, "Model type")
    *Item("Front end of vehicle", "Front end of vehicle")    
    *Item("Rear end of vehicle", "Rear end of vehicle") 
    *Item("Full vehicle", "Full vehicle")    
    *Item("Powertrain", "Powertrain model")      
  *EndGroup()
*EndPanel()

Context

*BeginRadioGroup()

Comments

help_text is not currently used by MotionView.