Hi all,
is it possible to display the infinity symbol ("laying 8") in a text or numeric editor if I pass in e.g. double.MaxValue (or MinValue)?
The same would go for grids: is it possible to display those symbols in grids somehow?
Best regards,
Matthias
Perfect, thanks, that works fine!
Regards,
Hi Matthias,
I've attached a sample project that shows one way to do what you want. Please let me know if you have any other questions.
If there is a font that supports the infinity symbol, then you could do this using a DataFilter to translate double.MaxValue into infinity and vice versa. I'm not sure if there is such a font, or if the infinity symbol is an ascii character.
If not, then what I would do is use a DrawFilter to draw the symbol yourself - maybe using an image. But this would only work when the editor is not in edit mode.