LoginSignup
0
0

More than 5 years have passed since last update.

再背面にペーストするPowerPointマクロ

Last updated at Posted at 2015-05-30

やりたいこと

PowerPointでペーストすると、必ず最前面になってしまう。
最初から、再背面に貼り付けたい場合に、一発で操作したい。

コード

Module1

Private Sub pasteBack()

    On Error GoTo myErr

    ActiveWindow.Selection.SlideRange.Shapes.Paste.ZOrder msoSendToBack

    Exit Sub
myErr:
    Debug.Print "クリップボードが空"
End Sub

参考

[VBA]PowerPointの指定したスライドへExcelグラフを最背面で貼り付けるExcel/VBA

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0