ListBox.CellHelpTag

From Xojo Documentation

Method

ListBox.CellHelpTag(RowNumber as Integer, ColumnNumber as Integer) As String

New in 2009r2

Supported for all project types and targets.

Used to set or get the help tag (i.e. tooltip) for a ListBox cell. row and column are zero-based.

Notes

fa-info-circle-32.png
ToolTips do not appear on 64-bit macOS builds.

Example

The following adds a tip to cell 0,0. The tip is visible when the user moves the pointer over the cell.

Listbox1.CellHelpTag(0, 0) = "Enter a string."