Examples of SldLayoutId


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
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.