ListBox.CellBorderRightAt

From Xojo Documentation

Property (As ListBox.Borders )
aListBox.CellBorderRightAt(Row as Integer, Column as Integer) = newListBox.BordersValue
or
ListBox.BordersValue = aListBox.CellBorderRightAt(Row as Integer, Column as Integer)

New in 2019r2

Supported for all project types and targets.

Sets the right border of the cell designated by Row, Column to a rule style. Row and Column are zero-based.

Notes

You specify the Border via ListBox.Borders.

Example

The following example sets the right border of a cell to Thin Solid.

ListBox1.CellBorderRightAt(1, 1) = ListBox.Borders.ThinSolid