Example usage for org.apache.poi.xslf.usermodel XSLFSlide importContent

List of usage examples for org.apache.poi.xslf.usermodel XSLFSlide importContent

Introduction

In this page you can find the example usage for org.apache.poi.xslf.usermodel XSLFSlide importContent.

Prototype

@Override
    public XSLFSlide importContent(XSLFSheet src) 

Source Link

Usage

From source file:easyoffice.powerpoint.PPTMaker.java

private static XSLFSlide copySlide(XMLSlideShow ppt, XSLFSlide srcSlide) {
    /*/*from w w w.j  a va2 s  .  com*/
     Create new slide instance copy
    */
    XSLFSlideLayout layout = srcSlide.getSlideLayout();
    XSLFSlide newSlide = ppt.createSlide(layout);
    ppt.setSlideOrder(newSlide, srcSlide.getSlideNumber());

    return newSlide.importContent(srcSlide);
}