Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
This PPT API release offers the ability to fetch the list of all unknown fonts. This lets you know the fonts which need to be substituted or replaced for the correct rendering of presentation slides.
using (Presentation pres = new Presentation("pres.pptx")) { foreach (var fontSubstitution in pres.FontsManager.GetSubstitutions()) { Console.WriteLine("{0} -> {1}", fontSubstitution.OriginalFontName, fontSubstitution.SubstitutedFontName); } }
Couple of new properties have been added to the Timing class. These properties let you configure if the slide effect will be repeated till the next click or the effect should be repeated till the end of slide.
Timing
The following C# sample code demonstrates:
using (Presentation presentation = new Presentation("demo.pptx")) { // Gets the effects sequence for the first slide ISequence effectsSequence = presentation.Slides[0].Timeline.MainSequence; // Gets the first effect of the main sequence. IEffect effect = effectsSequence[0]; // Changes the effect Timing/Repeat to "Until End of Slide" effect.Timing.RepeatUntilEndSlide = true; }
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Slides for .NET 22.9 Release Notes.