Browse our Products

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.

 

Aspose.Slides for .NET 22.9

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 81.72MB
  • Date Added:
  • 13/9/2022

Description

It contains Aspose.Slides for .NET 22.9 release.

File Details

Get Font List of Unknown Fonts

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);
    }
} 

Configure Slide Effect Repetition Behavior

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.

The following C# sample code demonstrates:

  1. How to fetch the effects sequence of the desired slide
  2. Get the desired effect that you want to repeat
  3. Set the slide effect repeat timing till the end of slide via API
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.

 English