Package org.pptx4j.pml.SlideLayoutIdList

Examples of org.pptx4j.pml.SlideLayoutIdList.SldLayoutId


  public SldLayoutId addSlideLayoutIdListEntry(SlideLayoutPart slideLayoutPart)
    throws InvalidFormatException {
   
    Relationship rel = this.addTargetPart(slideLayoutPart);
   
    SldLayoutId entry = Context.getpmlObjectFactory().createSlideLayoutIdListSldLayoutId();
   
    entry.setId( new Long(this.getSlideLayoutOrMasterId()) );
    entry.setRid(rel.getId());
   
    this.getJaxbElement().getSldLayoutIdLst().getSldLayoutId().add(entry);
   
    return entry;
  }
View Full Code Here

TOP

Related Classes of org.pptx4j.pml.SlideLayoutIdList.SldLayoutId

Copyright © 2018 www.massapicom. 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.