"gridColumnsMinimumWidth"

Defines the minimum width for the given columns of the grid layout.

Synopsis

this.gridColumnsMinimumWidth(dyn_int columns, dyn_int widths);

Parameter

Parameter Description
columns Columns of the grid layout (index starting from 0)
widths Width for the respective column number

Description

Defines the minimum width for the given columns of the grid layout.

Example

main()
{
  LAYOUT_GROUP1.gridColumnsMinimumWidth(makeDynInt(0, 2, 4),makeDynInt(10, 30, 10));
}

Assignment

Layout group