Examples of ExHyperlink


Examples of org.apache.poi.hslf.record.ExHyperlink

   * Add a hyperlink to this presentation
   *
   * @return 0-based index of the hyperlink
   */
  public int addHyperlink(Hyperlink link) {
    ExHyperlink ctrl = new ExHyperlink();
    ExHyperlinkAtom obj = ctrl.getExHyperlinkAtom();
        if(link.getType() == Hyperlink.LINK_SLIDENUMBER) {
            ctrl.setLinkURL(link.getAddress(), 0x30);
        } else {
            ctrl.setLinkURL(link.getAddress());
        }
    ctrl.setLinkTitle(link.getTitle());

    int objectId = addToObjListAtom(ctrl);
    link.setId(objectId);
    obj.setNumber(objectId);

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.