The column in which to place this widget.
The row in which to place this widget.
The amound of padding to add around the widget.
The amound of padding to add inside the widget.
The amount of column this widget should span across.
The amount of rows this widget should span across.
Which edges of the cell the widget should touch. See note above.
This widget to aid method chaining.
Caveats: In order for a gridded UI to be fully dynamic to expand and contract when resizing elements, you must to assign a weight to at least one column and row using configureGeometryColumn and configureGeometryRow respectively.
Geometry method for placing this widget inside its parent using an imaginary grid. Somewhat more direct and intuitive than pack. Choose grid for tabular layouts, and when there's no good reason to choose something else.
If a widget's cell is larger than its default dimensions, the sticky parameter may be used to position (or stretch) the widget within its cell. The sticky argument is a string that contains zero or more of the characters n, s, e or w. Each letter refers to a side (north, south, east, or west) that the widget will 'stick' to. If both n and s (or e and w) are specified, the slave will be stretched to fill the entire height (or width) of its cell. The sticky parameter subsumes the combination of anchor and fill that is used by pack. The default is an empty string, which causes the widget to be centered in its cell, at its default size. The anchorposition enum may be of use here but doesn't provide all combinations.