WebListBox.CellStyle

From Xojo Documentation

Method

WebListBox.CellStyle(Row As Integer, Column As Integer, Assigns Style As WebStyle)

New in 2011r1

Supported for all project types and targets.

Assigns the Style WebStyle to the row, column cell. Row and column are zero-based.

Notes

Create WebStyles to change the font size, type, colors or anything else style-related for individual cells in the ListBox.

Example

This example assigns the Style "CellBoldStyle" to the cell indicated by row, column:

Listbox1.CellStyle(1, 1) = CellBoldStyle

CellBoldStyle is a WebStyle with the "Font Style" property set to bold

See Also

WebStyle