Enables or disables the appearance of tooltips.

Usage

Set_Property(OLECtrlEntID, "OLE.ShowToolTips", Value)

Values

Value can be any positive or negative whole number:

Default: 1

Remarks

The ShowToolTips property enables or disables the appearance of tooltips. When enabled, tooltips appear when a user hovers over a cell whose contents do not fit in the cell. This occurrs regardless of the cells mutlilined settings.

To disable tooltips, set this property to 0. To enable tooltips to appear only when the table has focus, set this property to 1. To enabled tooltips to appear at all times, set this property to 2.

Example

// Turn off tooltips 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ShowToolTips", 0) 

// Turn on tooltips, but only show them when the table has focus 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ShowToolTips", 1) 

// Turn on tooltips, and show them at all times 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ShowToolTips", 2)
  • No labels