underline with color

S

sarah

I am trying to underline with a wavy coloured line however the wavy line is
appearing but there it is gray and no matter what colour i use it is always
gray. Here is the code i am using :

font.UnderlineColor = wdColorTurquoise

Any ideas why this is happening?
 
J

Jean-Guy Marcil

sarah was telling us:
sarah nous racontait que :
I am trying to underline with a wavy coloured line however the wavy
line is appearing but there it is gray and no matter what colour i
use it is always gray. Here is the code i am using :

font.UnderlineColor = wdColorTurquoise

I am not sure, not seeing the rest of the code... it could be any number of
things...

Here, this code works as expected:

With Selection.Font
.Underline = wdUnderlineWavyHeavy
.UnderlineColor = wdColorTurquoise
End With

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
[email protected]
Word MVP site: http://www.word.mvps.org
 
Top