ListBox.DropLocations

From Xojo Documentation

Enumeration
ListBox.DropLocations

New in 2017r2

Specifies where on ListBox the object was dropped.

Values

Enum Description
OnRow The drop is occurring on the row itself.
AfterRow The drop is occurring between rows, after the row specified. The row can be in the range of [-1, RowCount-1] and specifying -1 will insert it at the top of all the rows. This value will also be RowCount-1 if the user drags below the item list.
AfterAllRows The drop is occurring after all rows in the list.
OnRow The drop is occurring on the entire control, not on a particular row. This matches the previous behavior.

See Also

DropObjectOnRow event.