VBAを使用したフルスクリーンプレゼンテーションのスライドの位置決め/変更

StackOverflow https://stackoverflow.com/questions/5500449

  •  14-11-2019
  •  | 
  •  

質問

フルスクリーンスライドショープレゼンテーションのスライドのサイズをどのように配置したり変更したりできますか?(スライドショーの実行中)

役に立ちましたか?

解決

With ActivePresentation.SlideShowSettings.Run()
    .Left = 277
    .Top = 128
    .Width = 380
    .Height = 290
End With

Didn't find a way to avoid "flashing" of first slide.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top