Hi.
I'm wondering if there is any chance to apply antialias to control's text.
I know that you can set the TextRenderingMode to GDI or GDI+, but I don't realise the difference between them.
Thanks.
Hello ldcampana,
You could set the text to be drawn antialiased to the 'UltraFormattedLinkLabel' and to the 'UltraFormattedTextEditor' controls. Like in the following code sample:
this.ultraFormattedLinkLabel1.TextSmoothingMode = TextSmoothingMode.AntiAlias;
Setting the above will have an effect only if the 'TextRenderingMode' property is set to GDI+.
You could read about the above mentioned properties at the following links:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/HTML/Infragistics2.Win.v11.1~Infragistics.Win.TextRenderingMode.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/Infragistics2.Win.v11.1~Infragistics.Win.FormattedLinkLabel.FormattedLinkEditor~TextSmoothingMode.html.
Please do not hesitate to ask if something comes up.