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