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 23.10(DLLs only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 189.62MB
  • Date Added:
  • 22/10/2023

Description

It contains Aspose.Slides for .NET 23.10 (DLLs-only) release.

File Details

Upgrade your existing .NET projects with the latest features of Aspose.Slides for .NET 23.10 (DLLs only). This release provides enhancements for superior presentation processing and improved conversion accuracy.

Key Highlights

  • Optimized Conversion: Developers can experience crystal-clear image quality when converting presentations to PDF and TIFF formats, addressing previous blurring and distortion issues.
  • New ODP 3D Chart Support: With Aspose.Slides for .NEt 23.10, you can render 3D charts from OpenDocument Presentation (ODP) files, expanding your presentation format compatibility.
  • Advanced Ink Management API: Utilize the new InkTrace and InkBrush classes to meticulously manage and manipulate ink objects within presentations, ideal for touch-enabled applications.
  • Bug Fixes: Numerous bug fixes have been added for a smoother presentation processing experience across your C# PowerPoint solutions.

Additional Updates

  • Determine the number of lines within a paragraph, providing users with greater insight into the structure of their textual content.
  • When converting ODP files that include 3D charts, we ensure that the visual elements remain preserved.
  • The ability to include the retrieval of the visual dimensions of Ink shapes within presentations has been expanded.

Get The Number of Lines in a Paragraph

The following C# code showcases how to retrieve the number of lines in a paragraph using the Paragraph.GetLinesCount method:

using (Presentation pres = new Presentation())
{
    ISlide sld = pres.Slides[0];
    IAutoShape ashp = sld.Shapes.AddAutoShape(ShapeType.Rectangle, 150, 75, 150, 50);
    IParagraph para = ashp.TextFrame.Paragraphs[0];
    IPortion portion = para.Portions[0];
    portion.Text = "Aspose Paragraph GetLinesCount() Example";
    Console.WriteLine("Lines Count = {0}", para.GetLinesCount());
}

Source*

Upgraded Ink Management API

With the newly added InkBrush and InkTrace classes, it is easier to manage the relevant functionality within your .NET apps. The following C# sample code illustrates the usage of these classes:

using (Presentation pres = new Presentation("pres.pptx"))
{
    IInk ink = (IInk)pres.Slides[0].Shapes[0];
    IInkTrace[] traces = ink.Traces;
    IInkBrush brush = traces[0].Brush;
}

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 23.10 Release Notes.

 English