Consulting

Results 1 to 3 of 3

Thread: Erasing Text outline(PPT)

  1. #1
    VBAX Newbie
    Joined
    Sep 2017
    Posts
    2
    Location

    Erasing Text outline(PPT)

    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.

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,094
    Location
    I believe this is a (longstanding) bug.

    I don't know a good workaround but you can set .Font.Line.Transparency = 1 ' 100%
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

  3. #3
    VBAX Newbie
    Joined
    Sep 2017
    Posts
    2
    Location
    Thanks! It is enough answer. : )

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •