Positionnement / Modification de la taille de la diapositive sur la présentation plein écran à l'aide de VBA?

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

  •  14-11-2019
  •  | 
  •  

Question

Comment puis-je positionner et / ou modifier la taille des diapositives sur la présentation du diaporama plein écran?(En exécutant le diaporama)

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top