
GridLayout
Package: java.awt
Description: a layout manager that arranges components in a grid with a
fixed number of rows and columns
Constructors
GridLayout( int numberOfRows, int numberOfColumns )
creates a grid layout with the number of rows and columns speci-
fied by the arguments.
GridLayout( int numberOfRows, int numberOfColumns,
int hGap, int vGap )
creates a grid layout with the specified number of rows and
columns and with a horizontal gap of hGap pixels between
columns and a vertical gap of vGap pixels between rows.Horizon-
tal gaps are also placed at the left and right edges,and vertical
gaps are placed at the top and bottom edges.
Integer
Package: ...