Table::ColumnOptions

Options for columns of Table.

TypeObject

Properties

Table::ColumnType type (optional)

The type of column, which decides how table cells are rendered.

By default the column renders readonly text.

Function onDraw (optional)

If the type is Custom, this function will be used for renderering table cells under the column.

The function will be called with onDraw(painter, rect, value).

Integer column (optional)

Which column of table model to show.

By default the index of table's newly-added column will be used.

Integer width (optional)

Initial width of column.

Using -1 will use auto-size. By default -1 is used.

On Linux setting the width of last column does not work, it always resizes to fill the space. It is recommended to use -1 for last column to have consistent behavior between platforms.