DesktopListBox.CellTextAt
From Xojo Documentation
Method
DesktopListBox.CellTextAt(RowNumber as Integer, ColumnNumber as Integer = 0) As String
New in 2021r3
Supported for all project types and targets.
New in 2021r3
Supported for all project types and targets.
Used to read from or write to the cell based on the row and column numbers passed.
Notes
The top-left cell is 0,0. The class constants AllColumns and AllRows can be used to specify that you wish to get or set all the values columns or rows. For example, the following specifies all columns in the last row added using AddRow or AddRowAt:
If you set this equal to a tab-delimited string, you can update the row with one line of code.
Sample Code
In this example, the following code populates a two-column ListBox with the names of the controls in the window and their indexes.