View source
interface IGridViewColumn
package feathers.controls
extended by GridViewColumn, TreeGridViewColumn
Interface for column data in components like GridView
and TreeGridView
.
Available since
1.0.0
.Variables
minWidth:Float
The minimum width of the column, measured in pixels.
If the width
is specified explicitly, then the minWidth
will be
ignored.
In the following example, the column's minimum width is customized.
column.minWidth = 120.0;
Available since
1.0.0
.width:Null<Float>
The width of the column, measured in pixels.
In the following example, the column's width is customized.
column.width = 120.0;
Available since
1.0.0
.