Skip to content

GridRowLayout

The layout of columns in a Grid Table View's Rows or Header.

GridRowLayout Properties

Property Type Required
ColumnWidth number[] Optional
ColumnWidthPercentage number[] Optional
Spacing number Optional

ColumnWidth

Array of column widths. In iOS the units for this value are in logical points.

-1 means auto-size. At most one column can be set to -1.

Only ColumnWidth or ColumnWidthPercentage is allowed at a time.

  • type: number[]

All items must be of the type: number


ColumnWidthPercentage

Array of column width percentages as fractions of 1.

-1 means auto-size. At most one column can be set to -1.

Only ColumnWidth or ColumnWidthPercentage is allowed at a time.

  • type: number[]

All items must be of the type: number


Spacing

The spacing in between columns. In iOS, the units for this value are in logical points.

  • type: number