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.Words for .NET 23.2

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 84.71MB
  • Date Added:
  • 2/2/2023

Description

It contains Aspose.Words for .NET 23.2 MSI installer.

File Details

Count Document Words with Precision

Explore precise word count statistics! Set C# API’s IncludeTextboxesFootnotesEndnotesInStat property. Check default settings and customize for accurate word counts.

Added public property Document.IncludeTextboxesFootnotesEndnotesInStat to the Document class.

Please use the following C# code snippet to include or exclude footnotes, endnotes, and textboxes from word count stats.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Writeln("Lorem ipsum");
builder.InsertFootnote(FootnoteType.Footnote, "sit amet");

// Check the option is set to 'false' by default when a new document is created.
Console.WriteLine("By default for new document this option is set to '{0}'", doc.IncludeTextboxesFootnotesEndnotesInStat);

doc.UpdateWordCount();
Console.WriteLine("Words count without textboxes, footnotes and endnotes: {0}", doc.BuiltInDocumentProperties.Words);

// Change option.
doc.IncludeTextboxesFootnotesEndnotesInStat = true;
doc.UpdateWordCount();
Console.WriteLine("Words count with textboxes, footnotes and endnotes: {0}", doc.BuiltInDocumentProperties.Words);

/* This code produces the following output:
By default for new document this option is set to 'False'
Words count without textboxes, footnotes and endnotes: 2
Words count with textboxes, footnotes and endnotes: 4
*/

Source*

Enhanced MOBI Export

This release offers your .NET Apps to have a seamless Kindle® integration using C# API. Aspose.Words for .NET now supports MOBI (also called PRC, AZW) file format export. Optimize e-book integration with C# API.

Please use the following C# code to save a DOCX document to MOBI file format using API:

Document doc = new Document("in.docx");
doc.Save("out.mobi");

Source*

or

Document doc = new Document("in.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.Mobi);
doc.Save("out.mobi", options);

Source*

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for .NET 23.2 Release Notes.

 English