grow

fun grow(    left: Int = 0,     right: Int = 0,     top: Int = 0,     bottom: Int = 0): Boolean

Grows grid by specified dimensions, filling new cells with null values.

New rows and columns get automatic resizing behaviour, specified as COLUMN_WIDTH_AUTO and ROW_HEIGHT_AUTO. Therefore, new empty rows and columns get rendered with height and width 0.0 e.g. invisible if not specified otherwise.

Return

true if the grid has changed by this operation, false otherwise.

See also

Parameters

left

Column count to be added to the left.

right

Column count to be added to the right.

top

Row count to be added on the top.

bottom

Row count to be added on the bottom.

Throws

If any value passed was negative.