Package slides.count

Source Code of slides.count.AsposeCountSlides

package slides.count;

import com.aspose.slides.Presentation;

public class AsposeCountSlides
{
  public static void main(String[] args)
  {
    //Instantiate a PresentationEx object that represents a PPTX file
    Presentation pres = new Presentation("data/presentation.pptx");

    System.out.println("Total Slides in Count: " + pres.getSlides().size());
  }
}
TOP

Related Classes of slides.count.AsposeCountSlides

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.