Hi,
it seems that the property SlideShowTransition.AdvanceAfterTime is not read (attached the test file) .
If the file is saved to pptx format, the property is read correctly.
Can you help me?
Kind regards,
Fabio
Presentation ppt = new Presentation();
ppt.LoadFromFile(@"test_file.ppt");
ISlide slide = ppt.Slides[0];
uint time= slide.SlideShowTransition.AdvanceAfterTime;
Presentation presentation = new Presentation();
presentation.LoadFromFile(....);
//traverse the slides of PPT files
for (int i = 0; i < presentation.Slides.Count; i++)
{
var slide = presentation.Slides[i];
Console.WriteLine(slide.SlideShowTransition.AdvanceAfterTime);
}