Hi all, Write a line of code that declares a variable named layout of type LayoutManager and initializes it with a new object, which when used with a container can lay out components in a rectangular grid of equal-sized rectangles, 3 components wide and 2 components high???
Actually I thought the constructor for GridLayout was GridLayout(int rows, int cols) Therefore the rows would determine the vertical(i.e. height) and cols would determine the horizontal (i.e. width) So I believe it should be stated: LayoutManager layout = new GridLayout(2,3); For 2 components high and 3 components wide which is just a different way of saying 3 components wide and 2 components high. You agree?
Regards,<BR>Travis M. Gibson, SCJP<BR>Java Developer<BR>www.travismgibson.com<BR>travis@travismgibson.com
Ann , Varghese
Greenhorn
Joined: Oct 16, 2000
Posts: 13
posted
0
Hi, Thanks for your reply, can someone confirm the answer for the above qn. I am not really sure.
Mary Chaddi
Greenhorn
Joined: Nov 01, 2000
Posts: 7
posted
0
Thats correct. Rgds Mary Chaddi
[This message has been edited by Ajith Kallambella (edited November 06, 2000).]
Sasikanth Malladi
Ranch Hand
Joined: Nov 04, 2000
Posts: 175
posted
0
Yes, travis is right. If you have some math background, you can remember this as a matrix, and in a matrix we always refer to the rows first and the columns next. Regards, Sashi