ListBox.HeaderType


Warning

This item was deprecated in version 2019r2. Please use DesktopListBox.ColumnSortTypeAt as a replacement.

Description

{

Sample code

The following code in the Open event of the ListBox sets the first two columns as sortable and the third column as non-sortable.

Me.HeaderType(0) = Listbox.HeaderTypes.Sortable
Me.HeaderType(1) = Listbox.HeaderTypes.Sortable
Me.HeaderType(2) = Listbox.HeaderTypes.NotSortable

Compatibility

All projects types on all supported operating systems.