Group

The process Group is a basic container for other processes, equivalent to the Component process. Children can be added to it by using braces. Its children can be reached by their name through a dotted notation.

Constructor

Group <id>

Action

Activates all its children from top to bottom, in-depth first.

Predefined children

None

Example


use core
use base
use display
use gui

_main_
Component root {
  Frame f ("Hello Interaction!", 0, 0, 500, 400)
  Group g {
    FillColor _(50, 100, 150)
    Rectangle _(50, 50, 100, 100, 5, 5)
  }
}