Examples of IHyperlinkManager


Examples of com.aspose.slides.IHyperlinkManager

    // Add some text to the frame
    ITextFrame.getParagraphs().get_Item(0).getPortions().get_Item(0)
        .setText("Aspose.Slides");

    // Set Hyperlink for the portion text
    IHyperlinkManager HypMan = ITextFrame.getParagraphs().get_Item(0)
        .getPortions().get_Item(0).getPortionFormat()
        .getHyperlinkManager();
    HypMan.setExternalHyperlinkClick("http://www.aspose.com");

    // Save the PPTX to Disk
    pres.save("data/Aspose_Hyperlink.pptx", SaveFormat.Pptx);
  }
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.