Settings for tooltips for a column or control.
Properties
Property |
R |
W |
Description |
|---|---|---|---|
Tip |
|
x |
|
title |
|
x |
|
delaytime |
|
x |
|
visibletime |
|
x |
|
icon |
|
x |
|
isbubble |
|
x |
|
enabled |
|
x |
Example in window with column item code (item list window)
// simple variant
items.itemcode.tooltip.tip="This is the item number";
// if you want to define more properties
let l=items.itemcode.tooltip;
l.title='Info';
l.title='This is the item number';
// Working with expression
// in Text after " \t " (Tab/char 9) you can define datawindow syntax
let l=items.itemcode.tooltip;
l.title='Info';
l.tip='\t"This is the item Number\rNumber with max. 50 chars:\r"+itemcode + " "+itemname';
l.icon='2';

All properties support Datawindow Expressions
see EscapeCharacter