How to add the custom tooltip renderer?

已回答
 
 
 
Hi all, my customer ask me to show sophisticated tool-tips renderer, not the string only. How to do it? For now I add the tooltips in the local inspection, something like following
 
ProblemDescriptorBase problemDescriptorBase = new ProblemDescriptorBase(first, last, "My tooltip message", null, ProblemHighlightType.INFORMATION,
false, null, true, true);

 
One way is to show it as an HTML but how to process it, how to show my tooltip as an html? Just wrapping the tooltip text to HTML hasn't any effect Maybe I can use another solution? Please, send me a link or a mention

 

0

Hi,

To display HTML formatting pass the message: <html><body><b>My</b> <i>tooltip</i> message</body></html>

0

请先登录再写评论。