TABLE OF CONTENTS
group
NAME
::guib::moduleObj::group -- the group GUIB keyword
USAGE
group -name name { ...code...}
DESCRIPTION
-- GUIB keyword !!!
Keyword "group" is meant for grouping the bunch of input-entities
together. For example, let say that upon some user-action we need to disable/enable several input-entities. This would make a "tracevar" scripts to be long as we would need to specify the behavior for each variable separately. However we can group these variables together by sandwiching then by the "group" keyword, and then simply enable/disable the whole group.
RETURN VALUE
None.
EXAMPLE
group -name group1 {
line -name whatever1 { var { ... } var { ... } } line -name whatever2 { var { ... } var { ... } }
}