Results 1 to 6 of 6

Thread: Send Image to Back

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,096
    Location
    Try this (Picture should be selected)

    Sub pic()
        Dim opic As Shape
        Set opic = ActiveWindow.Selection.ShapeRange(1)
        With opic
            .LockAspectRatio = True
            .Height = ActivePresentation.PageSetup.SlideHeight
            .ZOrder (msoSendToBack)
            .Left = 0
            .Top = 0
        End With
    End Sub
    Last edited by Aussiebear; 04-03-2025 at 02:36 PM.
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

Posting Permissions

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