*BeginTaskGroup()

Creates a task group.

Syntax

*BeginTaskGroup(group_name, "group_label")

Arguments

group_name
The variable name of the group.
Type: Varname
group_label
The descriptive label of the group.
Type: label

Example

*BeginPanel
 • • •
   *BeginTaskGroup(pwrtrain_task, "Powertrain task")
       *BeginTask(an_pwrtrain_load,
                  "Static load analysis", 
                  andef_event,
                  "Libs/Tasks/Pwrtrain/event.mdl",
                  "Static load analysis of powertrain",
                  sys_pwrtrain.b_pwrtrain,
                  B_Ground,
                  • • •
         *BeginForm(frm_pwrtrain_parameters)
           *Title("Vehicle Parameters")
           *Prompt("Enter the vehicle parameters")
         *EndForm()
         *BeginTabbedForm()
           *Title("Solver Parameters")
           *Prompt("Edit solver parameters")
               *Tab("Equil", sys_solver.frm_equil)
               *Tab("IC", sys_solver.frm_ic)
         *EndForm()
      *EndTask()
   *EndGroup()
*EndPanel()

Context

*BeginPanel()

Comments

Selecting an analysis task from a task group in a Wizard panel causes an instance of that analysis task to be created in the model.