ListColumn.MinWidthActual

From Xojo Documentation

Property (As Integer )
aListColumn.MinWidthActual = newIntegerValue
or
IntegerValue = aListColumn.MinWidthActual

Supported for all project types and targets.

The minimum width of the column (points).

Example

The following example sets the minimum widths of the first three columns.

Me.Column(0).MinWidthActual = 40
Me.Column(1).MinWidthActual = 30
Me.Column(2).MinWidthActual = 20