"gridRowsMinimumHeight"

Defines the minimum height for the specified rows of the grid layout.

Synopsis

this.gridRowsMinimumHeight(dyn_int rows, dyn_int heights);

Parameter

Parameter Description
rows Rows of the grid layout (starting from 0)
heights Height for the respective row number

Description

Defines the minimum height for the specified rows of the grid layout.

Example

main()
{
  LAYOUT_GROUP1.gridRowsMinimumHeight(makeDynInt(0, 2, 3),makeDynInt(10, 10, 30));
}

Assignment

Layout group