ListBox.ColumnsResizable

From Xojo Documentation

Property (As Boolean )
aListBox.ColumnsResizable = newBooleanValue
or
BooleanValue = aListBox.ColumnsResizable

Supported for all project types and targets.

If True, the user can resize columns by moving the pointer over a column divider and dragging to the left or right.

Notes

When the pointer is over a divider, it changes to an East-West Splitter pointer to indicate that the user can drag the divider. If ColumnsResizable is False, the pointer does not change its shape.

Example

This example enables the resizable feature.

Me.ColumnsResizable = True