I have a bunch of formatted text in a UFTE which have multiple highlights and other formatting, and when I go to change the font for the whole editor only the already formatted areas pick up the change. I have used the ApplyStyles method with everything selected; I have tried to use the Apperances property, but nothing will apply the font change to the whole Control. What should I be using.
Thanks,
blair
Blair,
The following code worked for me to apply the style across all my text when nothing was selected:
this.ultraFormattedTextEditor1.EditInfo.ApplyStyle("font-family:Algerian;", true);
The original value of the editor was:
ultra<span style="font-family:Arial;">For</span><span style="font-weight:bold;">matte</span><span style="font-size:+2pt;">dTex</span>tE<span style="text-decoration:underline;">ditor1</span>
-Matt
I already tried that and it doesn't work for me. It still only applies the new style to the already formatted internal areas. I need it to work as a global setting around all of the text. Also as an FYI all of my documents are at least 2-3 pages long with a lot of formatting.