Examples of ICommentCollection


Examples of com.aspose.slides.ICommentCollection

    pres.save("data/AsposeComments.pptx", SaveFormat.Pptx);

    if (Comments.length > 0)
    {
      // Select comments collection of Author at index 0
      ICommentCollection commentCollection = Comments[0].getAuthor().getComments();

      String comment = commentCollection.get_Item(0).getText();
    }

    // ======================================
    // Accessing Slide Comments
    // ======================================
View Full Code Here

Examples of com.aspose.slides.ICommentCollection

    pres.save("data/AsposeComments.pptx", SaveFormat.Pptx);
   
    if (Comments.length > 0)
    {
      // Select comments collection of Author at index 0
      ICommentCollection commentCollection = Comments[0].getAuthor().getComments();
   
      String Comment = commentCollection.get_Item(0).getText();
    }
   
    // ======================================
    // Accessing Slide Comments
    // ======================================
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.