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.
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.
InkTrace
InkBrush
The following C# code showcases how to retrieve the number of lines in a paragraph using the Paragraph.GetLinesCount method:
Paragraph.GetLinesCount
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*
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; }
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.