How do I get a Row contents from a ListBox?

The used code is :slight_smile:

For Loop_Idx = 0 To Line_Count
  // Get a Row Contents
  aLine =  wListe.Liste.RowAt(Loop_Idx)

And I get something I do not want (DesktopListBoxRow).

I only want the Row contents.

How can I do that ?

Xojo 2025r1.1
macOS 15.5
MacBook Pro 13" m1

aLine = wListe.Liste.CellTextAt(Loop_Idx,column)

After some more testings, I recall AllColumns and here the result:

aLine = wListe.Liste.CellTextAt(Loop_Idx, DesktopListBox.AllColumns)