Adjusting the Size of a Component in a GridBadLayout Using Internal Padding
With internal padding, you can increase or decrease the minimum size
of a component. For example, if the minimum width of a component is 10
and ipadx is 2, the minimum width of the component within the
gridbag layout becomes 14.
See Creating a GridBagLayout for an example on how to
use a gridbag layout with gridbag constraints.
GridBagConstraints gbc = new GridBagConstraints();
gbc.ipadx = 2;
gbc.ipady = 4;
Post a comment