Is there a way to increase the display time (the time when tooltip is shown) of tooltip to be more then the default time. Currently the tooptp displayes for about 5 seconds I want to display it for about 10 seconds becasue of the data amount that is displayed
Hi,
I don't think this is possible with the built-in tooltips in the grid. But you could turn off the grid's tooltips and show your own and then you would have control over the delay.
I can only do this (tooltip for the whole ultra grid control) :
toolTip.SetToolTip(ultraGrid1, "Hello World");
But it is not possible to do this (tooltip for each cell) :
toolTip.SetToolTip(ultraGrid1.Rows[0].Cells[0], "Hello World");