Browse our Products

Aspose.Slides for .NET 23.9 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-44099Getting the value from the Animate Text property of animation effectFeaturehttps://docs.aspose.com/slides/net/shape-animation/
SLIDESNET-44013ODP Net/Stock charts supportEnhancementhttps://docs.aspose.com/slides/net/convert-odp-to-pptx/
SLIDESNET-44012ODP Pie/Bubble charts supportEnhancementhttps://docs.aspose.com/slides/net/convert-odp-to-pptx/
SLIDESNET-44157Shape.GetThumbnail() throws System.ArgumentException: Parameter is not valid.Bug< https://docs.aspose.com/slides/net/create-shape-thumbnails/>
SLIDESNET-44156Failed to convert the presentation to a PDF/UA documentBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/#accessibility-and-compliance-standards-for-pdf
SLIDESNET-44138Loading the PPT file without license throws PptxExceptionBughttps://docs.aspose.com/slides/net/evaluate-aspose-slides/
SLIDESNET-44129PPTX to ODP conversion throws InvalidOperationExceptionBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/
SLIDESNET-44113AddEmptySlide(Layout) includes lstStyle and bodyPr elementsBughttps://docs.aspose.com/slides/net/slide-layout/
SLIDESNET-44108NullReferenceException is thrown when saving a PPTX fileBughttps://docs.aspose.com/slides/net/convert-presentation/
SLIDESNET-44105ValidateChartLayout method fails with ArgumentOutOfRangeExceptionBughttps://docs.aspose.com/slides/net/create-chart/
SLIDESNET-44036The number of presentation images is increased after replacing onesBug
SLIDESNET-43880Gradient not displaying correctly in generated PDFBughttps://docs.aspose.com/slides/net/conversion-to-pdf/
SLIDESNET-43756Content of slide thumbnail differs from content of presentation slideBughttps://docs.aspose.com/slides/net/convert-slide/#converting-slides-to-bitmap-and-saving-the-images-in-png
SLIDESNET-42768Text is not displayed in Notes when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-41326Text appearing backwards when converting from PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-41165Pptx file not properly converted to HtmlBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-html/
SLIDESNET-40684Pptx not properly converted to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-39193Equations being replaced when converting to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/

Public API Changes

Text Animation Effect - AnimateTextType enum has been added

The new AnimateTextType enum has been added and it represents the animate text type of an animation effect. It allows to set the following text animation types:

  • animate all text at once
  • animate text by word
  • animate text by letter

Example:

using (Presentation presentation = new Presentation("demo.pptx"))
{
    // Get the first effect of the first slide.
    IEffect firstSlideEffect = presentation.Slides[0].Timeline.MainSequence[0];
    
    // Change the effect Animate text type to "By letter"
    firstSlideEffect.AnimateTextType = AnimateTextType.ByLetter;
}