Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
235
Change the ToolTipText format for a UltraGrid Cell
posted

Hi,

I have a grid with tooltips dynamically changing for different cells on the grid. I an currently assigning the tooltiptext in the below way

 ugRow.Cells(VALIDATE_COLUMN).ToolTipText = '' text..."

Can i change the format of the text i.e the font, color, size of the text and set to the ToolTipText property so that the tool tip is more visible for the users?

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi,

    You could do this in a couple of ways.

    The first way would be to turn off the automatica tooltips in the grid and use UltraToolTipManager to show the tooltips yourself. There's a sample of this included with NetAdvantage. It's called ToolTips with Context.

    The other approach would be to use a CreationFilter and modify the IToolTipInfo for the CellUIElement.

Children