Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Code Block
 // 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)

...