Feedback
ListBox column resize and reorder events
- Status
- Fixed
- Fixed in
- v26.5.7
- Source discussion
- https://forum.objo.dev/d/157-listbox-events-missing
- Last updated
- 2026-05-29
Public summary
Add ListBox support for column resize and column reorder workflows. Users should be able to detect when a column is resized, detect when a column is moved, and opt in or out of user-driven column reordering.
Proposed public API from the source discussion:
Sub ColumnResized(column As Integer)
End Sub
Sub ColumnMoved(oldPosition As Integer, newPosition As Integer)
End Sub
ListBox1.AllowColumnReorder = True
This helps desktop apps persist user column layout choices, react to list layout changes, and disable column reordering where a fixed column order is required.