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 UsAspose - The .NET and Java Component Publisher
Keep in touch! We're on
Twitter and
Facebook