M
m rafala
I have text styled with a custom character style. Some of that text also has
direct formatting applied (bold, ital, etc.).
I need to remove the character style, but retain the direct formatting.
Possibly I also need to retain any font formatting provided by the style as.
I can do this:
For Each c In Selection.Characters
Set f = c.Font.Duplicate
c.Font.Reset
c.Font = f
Next c
but this is slow and I keep thinking I'm missing a simpler, faster way to do
this. Any suggestions?
direct formatting applied (bold, ital, etc.).
I need to remove the character style, but retain the direct formatting.
Possibly I also need to retain any font formatting provided by the style as.
I can do this:
For Each c In Selection.Characters
Set f = c.Font.Duplicate
c.Font.Reset
c.Font = f
Next c
but this is slow and I keep thinking I'm missing a simpler, faster way to do
this. Any suggestions?