ColumnWidth

data class ColumnWidth(val priority: Int, val width: Int? = null, val expandWeight: Float? = null)

Configuration for how a column should be sized in a table.

Constructors

Link copied to clipboard
constructor(priority: Int, width: Int? = null, expandWeight: Float? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val expandWeight: Float? = null

The weight of the column when expanding, or null if the column should not expand.

Link copied to clipboard

The priority of the column when allocating available width.

Link copied to clipboard
val width: Int? = null

The fixed width of the column, or null if the width should be computed automatically

Functions

Link copied to clipboard
open override fun toString(): String