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");
To assign a tooltip to a part of the grid like a cell, or in fact to a part of any control, you have to trap the MouseMove event and dynamically change the tooltip for the control based on the location of the mouse.
You can detect which cell the mouse is over in the grid using the ElementFromPoint method. HOWTO:UltraWinGrid Mouse Position and Cell Identification