*EndSystem()
Completes a preceding system block beginning with a *BeginSystem() statement.
Syntax
*EndSystem()Example
*BeginSystemGroup(sys_boost, "Steering boost",
                              sys_steering)
    *System("None")
  *BeginSystem("Steering boost 1", sysdef_boost,
               "Libs/Models/Steering/Boost/boost1.mdl",
               "Steering boost 1")
    *Attach(p_upper_inp, model.sys_steering.p_upper_inp)
    *Attach(p_tbar, model.sys_steering.p_upper_pin,
            sys_steering.p_upr_wormshaft)
    *Attach(b_tbar_att, model.sys_steering.b_pinion,
            sys_steering.b_wormshaft)
  *EndSystem()
*EndGroup()Context
*BeginSystemGroup()
Comments
Every *BeginSystem() requires an ending *EndSystem() statement.