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