The text on the viewer is diffrent from what actually gets printed on paper.
Textquality= wysiwyg gets set on each control by code using:
Code: Select all
for (int pageInd = 0; pageInd < this.Pages.Count; pageInd++)
{
foreach (StiComponent component in this.Pages[pageInd].Components)
{
if (component is StiText)
{
((StiText)component).TextQuality = StiTextQuality.Wysiwyg;
}
}
}
Print on paper

from viewer

Versions that were tested are: 2009.2, 2010.2 and 2010.3
Any ideas?