Cell Tool Tip text !!

Hi I am using essential grid and for some particular cell types I am setting those cells format as follows grid(1, 2).Format = "P" Now I am setting the Cell tool tip text as follows . grid(1, 2).CellTipText = grid(1, 2).Text I hope till this point I am clear . Now the Problem is if the value in the particular cell is say .6456 . Then the value becomes 64.56% , but the tool tip is shown as .6456 . Is there any turn around so that the value to be shown as 64.56% instead of .6456. Regards Lokesh

1 Reply

AD Administrator Syncfusion Team June 28, 2005 10:38 PM UTC

Instead of grid(1, 2).CellTipText = grid(1, 2).Text try grid(1, 2).CellTipText = grid(1, 2).FormattedText

Loader.
Up arrow icon