PresentedBySpeaker
Inheritance: java.lang.Object, com.aspose.slides.SlideShowType
public class PresentedBySpeaker extends SlideShowType
Presented by a speaker (full screen)
Presentation pres = new Presentation(); try { pres.getSlideShowSettings().setSlideShowType(new PresentedBySpeaker()); pres.save("pres.pptx", SaveFormat.Pptx); } finally { if (pres != null) pres.dispose(); }
Constructors
Constructor | Description |
---|---|
PresentedBySpeaker() | Initializes a new instance of the PresentedBySpeaker class. |
PresentedBySpeaker()
public PresentedBySpeaker()
Initializes a new instance of the PresentedBySpeaker class.
Presentation pres = new Presentation(); try { pres.getSlideShowSettings().setSlideShowType(new PresentedBySpeaker()); pres.save("pres.pptx", SaveFormat.Pptx); } finally { if (pres != null) pres.dispose(); }