I have a specific presentation which has a textbox containing slide number. If you, for example, duplicate any slide, the number in the textbox will be changed. How can I determine if the particular textbox contains slide number using Aspose.Slides?
I have observe your comments. I have shared code snippet with you. I like to inform that You may use PlaceholderType.SlideNumber property. This will help you to achieve your requirements. Please share feedback with us if there is still an issue.
IShape shape = (IShape)tmp0.next();
if (shape.getPlaceholder() != null &&
shape.getPlaceholder().getType() == PlaceholderType.SlideNumber)
{
// Do something
}
I have shared piece of code in a text file with you. This will help you to achieve your requirements. Please share feedback with us if there is still an issue.