Aspose - slides

Last post 11-06-2008, 6:33 PM by mshakeel.faiz. 1 replies.
Sort Posts: Previous Next
  •  11-06-2008, 4:32 PM 151415

    Aspose - slides

    Hi, Is it possible to create the table of contents for the pwer point presentation created through the java application.

    If so what API should be used?


    This message was posted using Page2Forum from Aspose.Slides for .NET and Java - Documentation
     
  •  11-06-2008, 6:33 PM 151443 in reply to 151415

    Re: Aspose - slides

    Dear Sivakumar,

     

    Thanks for considering Aspose.Slides.

     

    Yes, you can generate them from Title Text of every slide.

     

    Every slide has a title placeholder and it is present at index 0 in placeholders collection of Slide object.

     

    So you can access it 

    Placeholder TitlePlHld=Slide.getPlaceholders().get(0);

     

    Then you will convert it to TextHolder

    TextHolder TitleTHld=(TextHolder)TitlePlHld;

     

    Finally, you can get access to the Title text in this way.

    String TitleText=TitleHld.getText();

     

    For more help on extracting text, you should see this Technical Tip.

    Extract entire text from a Presentation

     


    Many Thanks and Kind Regards,

    Shakeel Faiz
    Support Developer
    Aspose Sialkot Team
    Contact Us
    Aspose - The .NET and Java Component Publisher

    Keep in touch! We're on Twitter and Facebook
     
View as RSS news feed in XML