0
A
回答
1
一個辦法,找出圖表
Sub EachSlides()
'developer by Bruno Leite
'http://officevb.com
Dim sld As Slide
Dim i As Integer
For Each sld In ActivePresentation.Slides
For i = 1 To sld.Shapes.Placeholders.Count
'select the placeholder
sld.Shapes.Placeholders(i).Select msoCTrue
Next i
Next sld
End Sub
相關問題
- 1. 使用VBA將圖表的圖形複製到Powerpoint
- 2. 使用VBA在Powerpoint中裁剪圖像
- 3. 使用VBA更新PowerPoint圖表
- 4. 如何在excel中使用vba在PowerPoint中移動圖像?
- 5. Excel圖表到PowerPoint VBA
- 6. 在PowerPoint中檢查多種形狀VBA
- 7. 試圖找到使用vba的PowerPoint中的圖表系列集合的數量
- 8. 如何使用VBA查找和替換Powerpoint中的字符串
- 9. 如何使用vba在PowerPoint中調整導出圖像大小?
- 10. 如何在PowerPoint中使用VBA「取消分組」圖片
- 11. 如何使用python在此圖像中查找矩形形狀?
- 12. Powerpoint 2016 VBA圖片
- 13. 參考圖表名稱只在PowerPoint VBA
- 14. 如何使用VBA在Powerpoint中定義形狀?
- 15. 在Powerpoint中使用R中的圖表
- 16. 如何使用c更新PowerPoint圖表#
- 17. 使用VBA更新PowerPoint圖片
- 18. 使用Powerpoint vba調整圖片尺寸
- 19. 如何圖表使用VBA
- 20. VBA如何從Word複製圖像/內聯形狀到powerpoint
- 21. 試圖在VBA中使用正則表達式查找「」(office 2010)
- 22. 使用VBA將Excel圖表粘貼到Powerpoint中
- 23. VBA - 如何粘貼Excel圖表後應用圖表模板到PowerPoint
- 24. 如何使用VBA在PowerPoint中查找和刪除重複單詞?
- 25. 如何使用Ruby在圖形中查找連接的組件
- 26. 使用在VBA中查找單詞並在下一個paragaraph中粘貼圖形
- 27. Powerpoint VBA定位列表視圖
- 28. Powerpoint 2011 VBA圖像替換
- 29. 在圖像中查找波形圖
- 30. 使用Gremlin查找圖形數據庫中圖形的深度
非常感謝布魯諾 –
這是否代碼實際上你有什麼好處?我看不出它會如何,但如果是這樣,那很好。如果沒有,請提及您需要支持哪個版本的PPT;識別圖表從一個版本到另一個版本有點不同。您是否需要使用通常的插入,圖表命令或者從Excel中複製/粘貼的圖表來識別用戶插入的圖表? –