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