ListBox.CellHelpTag
From Real Software Documentation
Method
| This method is only available on OS X and Windows platforms. For cross-platform development, use #If...#Endif with the Target... specifiers to make sure you will not attempt to use this method on an incompatible platform. |
Used to set or get the help tag (i.e. tooltip) for a ListBox cell. RowNumber and ColumnNumber are zero-based.
This is available only on Windows and Macintosh.
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."
