Package com.aspose.slides

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


    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

Related Classes of com.aspose.slides.ICommentCollection

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.