Is it possible to embed an image in a formatted tooltip? ie. using an img tag or similar construct?
Under the ToolTip section in the properties window there is a ToolTipTextFormatted property. When you click on the button an editor pops up and you can insert an image from a URL or a file.
Steve,
Ah... so it is possible.... it looks like the resulting text (from the window pictured in your post) is something like this:
<img style="width:##px; height:##px" data="encoded string of the image" />
Since I am looking to set this tooltip programmatically, all I have left to do is to figure out how to encode the image as a string.
Thanks Steve for finding that!