(Automatically generated from BeanInfo)
A java.awt.GridBagLayout is returned, unless the user passes in a subclass of GridBagLayout as the value argument, in which case the value argument is returned.
swing.panel() {
gridBagLayout()
label(text:"Hello", constraints:gbc(gridx:0,gridy:0,gridwidth:GridBagConstraints.REMAINDER, fill:GridBagConstraints.HORIZONTAL, insets:[10,10,10,10]))
button(text:"Click me" constraints:gbc(gridx:0,gridy:1))
}
|