TextQuality on textbox
Posted: Thu Jan 20, 2011 4:06 am
Hi
I see that the property "textQuality" on a textbox is missing in the WPF version.
Now.... We design our reports with the WPF designer, but users generate the reports with the .NET version.
Sometimes text in textboxes would not display correctly, but we could solve that by changing the "textquality" property on a textbox to "wysiwyg".
Yet we can't do that anymore now because that property is not available in the WPF designer.
But
Is there a way to set that property for all textboxes in a report by setting something in the beginrender-event of the report?
Something like:
foreach (textbox in report)
{
textbox.textquality="wysiwyg";
}
What would be the correct syntax for this?
I see that the property "textQuality" on a textbox is missing in the WPF version.
Now.... We design our reports with the WPF designer, but users generate the reports with the .NET version.
Sometimes text in textboxes would not display correctly, but we could solve that by changing the "textquality" property on a textbox to "wysiwyg".
Yet we can't do that anymore now because that property is not available in the WPF designer.
But
Is there a way to set that property for all textboxes in a report by setting something in the beginrender-event of the report?
Something like:
foreach (textbox in report)
{
textbox.textquality="wysiwyg";
}
What would be the correct syntax for this?