Hi, can someone tell me about GridBagConstraints.weightx,weighty in plain English so that I can understand.. Thanks guys
Sean <br />SCJP2, SCJP2p1.4, SCWCD
Milind Mahajan
Ranch Hand
Joined: Oct 23, 2000
Posts: 77
posted
0
Hi Sean, The gridx and gridy fileds of GridBagConstraints class control resizing of a component. Meaning that if, because of some circumstances, the size of the container changes, then the change in size id distributed on the components proportional to their weightx and weighty values. The default value is 0.0 (weightx and weighty are of type double) indicating that no resizing will be done for the components if conatiner is resized. This is the basic function of weightx and weighty. Thanks. Milind
Viji Bharat
Ranch Hand
Joined: Sep 18, 2000
Posts: 101
posted
0
I am assuming that gridx and gridy in Milind's post is a typo. It should have been weightx and weighty??