PDA

View Full Version : [SOLVED:] Erasing Text outline(PPT)



mcjoi80
09-18-2017, 01:58 AM
In PPT,
It was working correctly, Text outline visible.
But, I don't know why it doesn't working with
".Visible = False" option.

----------------------------------
for example,


With ActivePresentation.Slides(1).Shapes(1).TextFrame2.TextRange.Font.Line
.Visible = True
.ForeColor.RGB = RGB(79,79,79)
End With
----------------------------------

Plz help me.

John Wilson
09-18-2017, 11:44 AM
I believe this is a (longstanding) bug.

I don't know a good workaround but you can set .Font.Line.Transparency = 1 ' 100%

mcjoi80
09-18-2017, 03:01 PM
Thanks! It is enough answer. : )