ListBox.CellBorderBottomAt
From Xojo Documentation
Property (As ListBox.Borders )
aListBox.CellBorderBottomAt(Row as Integer, Column as Integer) = newListBox.BordersValue
or
ListBox.BordersValue = aListBox.CellBorderBottomAt(Row as Integer, Column as Integer)
New in 2019r2
Supported for all project types and targets.
or
ListBox.BordersValue = aListBox.CellBorderBottomAt(Row as Integer, Column as Integer)
New in 2019r2
Supported for all project types and targets.
Sets the bottom 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 bottom border of a cell to Thin Solid.
ListBox1.CellBorderBottomAt(1, 1) = ListBox.Borders.ThinSolid