Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は自動化ツールに取り組んでいます。各スライドで画像の縦横比を 100% に設定したい。vbaにそのためのプロパティはありますか?
前もって感謝します。
こういう意味ですか?
Option Explicit Sub Sample() Dim shp As Shape Set shp = ActivePresentation.Slides(1).Shapes("Picture 1") With shp .ScaleHeight 1, msoTrue .ScaleWidth 1, msoTrue End With End Sub