name of the group
the top element that contains all the controls
the set of controls contained in this GroupControl, can be empty
Private
name_the name of the button
Returns the set of controls in this GroupControl.
the set of controls in this GroupControl.
Returns a minimal string representation of this object, usually giving just identity information like the class name and name of the object.
For an object whose main purpose is to represent another Printable object, it is
recommended to include the result of calling toStringShort
on that other object.
For example, calling toStringShort()
on a DisplayShape might return something like
this:
DisplayShape{polygon:Polygon{'chain3'}}
a minimal string representation of this object.
Generated using TypeDoc
A group of LabControls which implements the LabControl interface.
A typical usage is to ensure a group of buttons stays together, such as playback buttons for rewind, play/pause and step actions. Put the buttons into a single
<div>
element, and make a GroupControl whose top element is that<div>
.Another usage is to insert a
<br>
element to break up long lines of controls into logical groups. The GroupControl has the<br>
as its top element and an empty list of other controls.